Преглед на файлове

feat(types): 添加IInstitutionRole接口

LuoHaoxuan преди 4 години
родител
ревизия
2854ee89b2
променени са 3 файла, в които са добавени 6 реда и са изтрити 5 реда
  1. 1 0
      types/src/interface/index.ts
  2. 0 5
      types/src/interface/institutionRole
  3. 5 0
      types/src/interface/institutionRole.ts

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

@@ -27,3 +27,4 @@ export * from './institution';
 export * from './process';
 export * from './structure';
 export * from './editLog';
+export * from './institutionRole';

+ 0 - 5
types/src/interface/institutionRole

@@ -1,5 +0,0 @@
-export interface IInstitutionRole {
-    ID: string;
-    institutionID: string;
-    approvalMember: string[];
-}

+ 5 - 0
types/src/interface/institutionRole.ts

@@ -0,0 +1,5 @@
+export interface IInstitutionRole {
+  ID: string;
+  institutionID: string;
+  approvalMember: string[];
+}