Преглед изворни кода

feat(types): 修改IExecutor的members字段的approvalTime属性类型为number | string

LuoHaoxuan пре 3 година
родитељ
комит
2656e8db50
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      types/src/interface/process.ts

+ 1 - 1
types/src/interface/process.ts

@@ -128,7 +128,7 @@ export interface IExecutor {
   members?: {
     ID: string;
     approvalStatus: string;
-    approvalTime: number;
+    approvalTime: number | string;
     approvalComment: string;
   }[];
 }