跳转到内容

ApplyPatchOperation

此内容尚不支持你的语言。

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