feat: 增加文件下载功能

This commit is contained in:
zhengkunwang223
2022-09-05 16:25:26 +08:00
parent 04db6a8cf3
commit 16b9adfefe
14 changed files with 195 additions and 5 deletions

View File

@@ -69,4 +69,10 @@ export namespace File {
oldName: string;
newName: string;
}
export interface FileDownload {
path: string;
name: string;
url: string;
}
}