Explorar el Código

feat(types): 接口类型定义

lipk hace 3 años
padre
commit
1b23ca8b06
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      types/src/interface/api/processApi.ts

+ 1 - 1
types/src/interface/api/processApi.ts

@@ -9,6 +9,6 @@ export namespace PostGetProcessListByTemplateId {
   export type Response = Array<{
     templateId: string;
     referenceProcessId: string;
-    process: IProcess;
+    process?: IProcess;
   }>;
 }