bpmn-js
Version:
A bpmn 2.0 toolkit and web modeler
13 lines (12 loc) • 373 B
TypeScript
/**
* A handler that updates lane refs on changed elements.
*
* @implements {CommandHandler}
*
*/
export default class UpdateFlowNodeRefsHandler implements CommandHandler {
execute(context: any): any[];
revert(context: any): any[];
}
type CommandHandler = import("diagram-js/lib/command/CommandHandler").default;
type Shape = import("../../../model/Types").Shape;