BpmnConnectSnapping.d.ts 468 B

1234567891011121314151617
  1. /**
  2. * Snap during connect.
  3. *
  4. */
  5. export default class BpmnConnectSnapping {
  6. static $inject: string[];
  7. /**
  8. * @param eventBus
  9. */
  10. constructor(eventBus: EventBus);
  11. }
  12. type EventBus = import('diagram-js/lib/core/EventBus').default;
  13. type Event = import('diagram-js/lib/core/EventBus').Event;
  14. type Shape = import('../../model/Types').Shape;
  15. type Axis = import('diagram-js/lib/util/Types').Axis;
  16. type Point = import('diagram-js/lib/util/Types').Point;