feat: 增加重命名功能

This commit is contained in:
zhengkunwang223
2022-09-03 22:22:40 +08:00
parent 89b95e0d45
commit 04db6a8cf3
12 changed files with 160 additions and 11 deletions

View File

@@ -64,4 +64,9 @@ export namespace File {
path: string;
content: string;
}
export interface FileRename {
oldName: string;
newName: string;
}
}