UNPKG

sws-micro-app-adapter

Version:
16 lines (15 loc) 304 B
declare type Flow = { id: string; class: string; tooltip?: Array<any>; }; declare type BpmnOption = { mode: string; xml: string; flows: Array<Flow>; }; /** * 打开流程图 */ declare const openWorkflowChart: (bpmnOption: BpmnOption) => void; export default openWorkflowChart;