Parcourir la source

feat(types): 文件迁移

lipk il y a 3 ans
Parent
commit
4895e1c8a7

+ 0 - 9
types/src/interface/api/approvaApi.ts

@@ -50,12 +50,3 @@ export namespace GetApprovalGetGatherYsProfileByBusinessID {
     copy: boolean;
   };
 }
-
-export namespace PostGetFeeByProcessId {
-  export type Params = {
-    businessID: string;
-    params: IBusinessProcessFeeParam[];
-  };
-
-  export type Response = Record<string, IBusinessProcessFee>;
-}

+ 10 - 0
types/src/interface/api/businessApi.ts

@@ -0,0 +1,10 @@
+import { IBusinessProcessFeeParam, IBusinessProcessFee } from '../business';
+
+export namespace PostGetFeeByProcessId {
+  export type Params = {
+    businessID: string;
+    params: IBusinessProcessFeeParam[];
+  };
+
+  export type Response = Record<string, IBusinessProcessFee>;
+}

+ 1 - 0
types/src/interface/api/index.ts

@@ -1,2 +1,3 @@
 export * from './approvaApi';
 export * from './processApi';
+export * from './businessApi';