Explorar o código

feat(types): 增加IApostilleFormData接口

LuoHaoxuan %!s(int64=3) %!d(string=hai) anos
pai
achega
cbac2dd3ae
Modificáronse 1 ficheiros con 11 adicións e 0 borrados
  1. 11 0
      types/src/interface/process.ts

+ 11 - 0
types/src/interface/process.ts

@@ -708,3 +708,14 @@ export interface IBudgetEstimateTableItem {
   // 审核状态文本
   // 审核状态文本
   approvalStatusText?: string;
   approvalStatusText?: string;
 }
 }
+
+export interface IApostilleFormData {
+  permissions: Record<string, string[]>;
+  users: string[];
+  afterApostille: 'next' | 'me';
+  canCollaborate: boolean;
+  collaborators: {
+    user?: string[];
+    institution?: string[];
+  };
+}