RemoveEmbeddedLabelBoundsBehavior.d.ts 507 B

12345678910111213141516
  1. /**
  2. * BPMN specific behavior ensuring that bpmndi:Label's dc:Bounds are removed
  3. * when shape is resized.
  4. *
  5. */
  6. export default class RemoveEmbeddedLabelBoundsBehavior 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';