ToggleCollapseConnectionBehaviour.d.ts 571 B

1234567891011121314
  1. export default class ToggleCollapseConnectionBehaviour extends CommandInterceptor {
  2. /**
  3. * @param eventBus
  4. * @param modeling
  5. */
  6. constructor(eventBus: EventBus, modeling: Modeling);
  7. }
  8. type EventBus = import('diagram-js/lib/core/EventBus').default;
  9. type Modeling = import('../Modeling').default;
  10. type Element = import('../../../model/Types').Element;
  11. type Shape = import('../../../model/Types').Shape;
  12. type DirectionTRBL = import('diagram-js/lib/util/Types').DirectionTRBL;
  13. import CommandInterceptor from 'diagram-js/lib/command/CommandInterceptor';