DropOnFlowBehavior.d.ts 494 B

12345678910111213
  1. export default class DropOnFlowBehavior extends CommandInterceptor {
  2. /**
  3. * @param eventBus
  4. * @param bpmnRules
  5. * @param modeling
  6. */
  7. constructor(eventBus: EventBus, bpmnRules: BpmnRules, modeling: Modeling);
  8. }
  9. type EventBus = import('diagram-js/lib/core/EventBus').default;
  10. type BpmnRules = import('../../rules/BpmnRules').default;
  11. type Modeling = import('../../modeling/Modeling').default;
  12. import CommandInterceptor from 'diagram-js/lib/command/CommandInterceptor';