UNPKG

diagram-js

Version:

A toolbox for displaying and modifying diagrams on the web

26 lines (22 loc) 796 B
import DraggingModule from '../dragging'; import RulesModule from '../rules'; import Bendpoints from './Bendpoints'; import BendpointMove from './BendpointMove'; import BendpointMovePreview from './BendpointMovePreview'; import ConnectionSegmentMove from './ConnectionSegmentMove'; import BendpointSnapping from './BendpointSnapping'; /** * @type { import('didi').ModuleDeclaration } */ export default { __depends__: [ DraggingModule, RulesModule ], __init__: [ 'bendpoints', 'bendpointSnapping', 'bendpointMovePreview' ], bendpoints: [ 'type', Bendpoints ], bendpointMove: [ 'type', BendpointMove ], bendpointMovePreview: [ 'type', BendpointMovePreview ], connectionSegmentMove: [ 'type', ConnectionSegmentMove ], bendpointSnapping: [ 'type', BendpointSnapping ] };