Przeglądaj źródła

feat(types): 快捷方式资料清单下载定义

lipk 3 lat temu
rodzic
commit
1cda6410e4
1 zmienionych plików z 13 dodań i 0 usunięć
  1. 13 0
      types/src/interface/api/workSpaceApi.ts

+ 13 - 0
types/src/interface/api/workSpaceApi.ts

@@ -0,0 +1,13 @@
+// 获取资料清单的文件结构
+export namespace GetYsProfileList {
+  export type Params = {
+    matterID: string;
+  };
+
+  export type Response = {
+    fileTree: any[]; // 太多类型丢失了,补不回来了
+  };
+}
+
+// 获取工作台-快捷方式-资料清单的数据
+export namespace GetDataSourceList {}