LayoutConnectionBehavior.d.ts 514 B

12345678910111213141516
  1. /**
  2. * A component that makes sure that Associations connected to Connections
  3. * are updated together with the Connection.
  4. *
  5. */
  6. export default class LayoutConnectionBehavior 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';