瀏覽代碼

feat(types): 接口类型定义

lipk 3 年之前
父節點
當前提交
1b23ca8b06
共有 1 個文件被更改,包括 1 次插入1 次删除
  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;
   }>;
 }