浏览代码

feat(types): 文件移动

lipk 3 年之前
父节点
当前提交
ed59e6cc84
共有 3 个文件被更改,包括 3 次插入3 次删除
  1. 1 1
      types/src/index.ts
  2. 2 2
      types/src/api/approvaApi.ts
  3. 0 0
      types/src/interface/api/index.ts

+ 1 - 1
types/src/index.ts

@@ -1,2 +1,2 @@
 export * from './interface/index';
-export * from './api/index'
+export * from './interface/api/index'

+ 2 - 2
types/src/api/approvaApi.ts

@@ -1,4 +1,4 @@
-import { IGatherYsProfileFile, IMatterNode, UploadMsg } from "../interface";
+import { IGatherYsProfileFile, IMatterNode, UploadMsg } from "..";
 
 export namespace PostApprovalCopyGatherYsProfileFiles {
 
@@ -23,7 +23,7 @@ export namespace PostApprovalCopyGatherYsProfileFiles {
 export namespace GetApprovalGetMatterData {
     export type Params = {
         businessID: string
-        getAllMatter?: boolean // 是否获取全部matter(自己无权限查看的matter也包含在内)
+        getAllMatter?: boolean // 是否获取全部matter
     }
 
     export type Response = Array<IMatterNode>

types/src/api/index.ts → types/src/interface/api/index.ts