bpmn-js
Version:
A bpmn 2.0 toolkit and web modeler
23 lines (19 loc) • 608 B
TypeScript
/**
* A handler that splits a lane into a number of sub-lanes,
* creating new sub lanes, if necessary.
*
* @implements {CommandHandler}
*
*/
export default class SplitLaneHandler implements CommandHandler {
static $inject: string[];
/**
* @param modeling
* @param translate
*/
constructor(modeling: Modeling, translate: Translate);
preExecute(context: any): void;
}
type CommandHandler = import('diagram-js/lib/command/CommandHandler').default;
type Modeling = import('../Modeling').default;
export type Translate = typeof import("diagram-js/lib/i18n/translate/translate").default;