CompensateBoundaryEventBehavior.d.ts 680 B

1234567891011121314151617
  1. /**
  2. * Behavior ensuring that only a single compensation activity is connected to a
  3. * compensation boundary event when connecting, reconnecting or replacing shapes.
  4. *
  5. */
  6. export default class CompensateBoundaryEventBehavior extends CommandInterceptor {
  7. /**
  8. * @param eventBus
  9. * @param modeling
  10. * @param bpmnRules
  11. */
  12. constructor(eventBus: import('diagram-js/lib/core/EventBus').default, modeling: import('../Modeling').default, bpmnRules: import('../../rules/BpmnRules').default);
  13. }
  14. type EventBus = import('diagram-js/lib/core/EventBus').default;
  15. export type Modeling = any;
  16. import CommandInterceptor from 'diagram-js/lib/command/CommandInterceptor';