ToggleElementCollapseBehaviour.d.ts 510 B

12345678910111213
  1. export default class ToggleElementCollapseBehaviour extends CommandInterceptor {
  2. /**
  3. * @param eventBus
  4. * @param elementFactory
  5. * @param modeling
  6. */
  7. constructor(eventBus: EventBus, elementFactory: ElementFactory, modeling: Modeling);
  8. }
  9. type EventBus = import('diagram-js/lib/core/EventBus').default;
  10. type ElementFactory = import('../ElementFactory').default;
  11. type Modeling = import('../Modeling').default;
  12. import CommandInterceptor from 'diagram-js/lib/command/CommandInterceptor';