AddLaneHandler.d.ts 563 B

12345678910111213141516171819202122
  1. /**
  2. * A handler that allows us to add a new lane
  3. * above or below an existing one.
  4. *
  5. * @implements {CommandHandler}
  6. *
  7. */
  8. export default class AddLaneHandler implements CommandHandler {
  9. static $inject: string[];
  10. /**
  11. * @param modeling
  12. * @param spaceTool
  13. */
  14. constructor(modeling: Modeling, spaceTool: SpaceTool);
  15. preExecute(context: any): void;
  16. }
  17. type CommandHandler = import('diagram-js/lib/command/CommandHandler').default;
  18. type Modeling = import('../Modeling').default;
  19. type SpaceTool = import('../../space-tool/BpmnSpaceTool').default;