wzj-vue/src/types/bpmn.d.ts

30 lines
520 B
TypeScript
Raw Normal View History

2024-01-20 22:09:15 +08:00
declare module 'bpmnDesign' {
export interface ParamVO {
type: string;
name: string;
value: string;
}
export interface TaskListenerVO {
event: string;
type: string;
name: string;
className: string;
params: ParamVO[];
}
2024-01-21 15:35:43 +08:00
export interface ExecutionListenerVO {
event: string;
type: string;
className: string;
params: ParamVO[];
}
export interface ProcessPanel {
processCategory: string;
id: string;
name: string;
2024-01-21 15:59:33 +08:00
documentation: string;
2024-01-21 15:35:43 +08:00
}
2024-01-20 22:09:15 +08:00
}