@@ -1,3 +1,5 @@
+import { IProcess } from '../process';
+
export namespace PostGetProcessListByTemplateId {
export type Params = {
businessID: string;
@@ -7,5 +9,6 @@ export namespace PostGetProcessListByTemplateId {
export type Response = Array<{
templateId: string;
referenceProcessId: string;
+ process: IProcess;
}>;
}