콘텐츠로 이동

ApplyPatchOperation

이 콘텐츠는 아직 번역되지 않았습니다.

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