import { type Entry } from "jmash-core"; /** 任务办理 */ export interface TaskDealWith { module?: string; /** 任务ID */ taskId?: string; /** 动作 */ action?: string; /** 办理意见.*/ comment?: string; /** 流程变量. */ vars: { [key: string]: Object; }; /** 办理可见 */ visible?: boolean; /** 委托完成可见 */ resolveVisable?: boolean; varName?: string; /** 可选动作数组. */ selectActions?: Entry[]; }