소스 검색

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;
   }>;
 }