| 12345678910111213141516171819202122 |
- /**
- * 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;
|