UnsetDefaultFlowBehavior.d.ts 552 B

12345678910111213141516
  1. /**
  2. * A behavior that unsets the Default property of sequence flow source on
  3. * element delete, if the removed element is the Gateway or Task's default flow.
  4. *
  5. */
  6. export default class DeleteSequenceFlowBehavior extends CommandInterceptor {
  7. /**
  8. * @param eventBus
  9. * @param modeling
  10. */
  11. constructor(eventBus: EventBus, modeling: Modeling);
  12. }
  13. type EventBus = import('diagram-js/lib/core/EventBus').default;
  14. type Modeling = import('../Modeling').default;
  15. import CommandInterceptor from 'diagram-js/lib/command/CommandInterceptor';