| 1234567891011121314 |
- export default class ToggleCollapseConnectionBehaviour extends CommandInterceptor {
- /**
- * @param eventBus
- * @param modeling
- */
- constructor(eventBus: EventBus, modeling: Modeling);
- }
- type EventBus = import('diagram-js/lib/core/EventBus').default;
- type Modeling = import('../Modeling').default;
- type Element = import('../../../model/Types').Element;
- type Shape = import('../../../model/Types').Shape;
- type DirectionTRBL = import('diagram-js/lib/util/Types').DirectionTRBL;
- import CommandInterceptor from 'diagram-js/lib/command/CommandInterceptor';
|