コンテンツにスキップ

ApplyPatchOperation

このコンテンツはまだ日本語訳がありません。

type ApplyPatchOperation =
| {
diff: string;
path: string;
type: "create_file";
}
| {
diff: string;
path: string;
type: "update_file";
}
| {
path: string;
type: "delete_file";
};