RemoveParticipantBehavior.d.ts 430 B

123456789101112131415
  1. /**
  2. * BPMN specific remove behavior.
  3. *
  4. */
  5. export default class RemoveParticipantBehavior extends CommandInterceptor {
  6. /**
  7. * @param eventBus
  8. * @param modeling
  9. */
  10. constructor(eventBus: EventBus, modeling: Modeling);
  11. }
  12. type EventBus = import('diagram-js/lib/core/EventBus').default;
  13. type Modeling = import('../Modeling').default;
  14. import CommandInterceptor from 'diagram-js/lib/command/CommandInterceptor';