export declare namespace WorkFlow { /** * 工作流消息体 */ interface IMessageBody { frameId?: string; command?: string; arguments?: any; result: any; dataChanged: boolean; } /** * 工作流消息结构 */ interface IMessage { type: string; /** * 目标Window对象?Window || string(暂时没用) * 对于审批而言,就是嵌套的表单iframe的contentWindow */ target: any; /** * 消息数据 */ data: IMessageBody; /** * 发送者window | string? */ sender?: any; } }