all files / lib/features/bendpoints/ index.js

100% Statements 0/0
100% Branches 0/0
100% Functions 0/0
100% Lines 0/0
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23                                             
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';
 
 
export default {
  __depends__: [
    DraggingModule,
    RulesModule
  ],
  __init__: [ 'bendpoints', 'bendpointSnapping', 'bendpointMovePreview' ],
  bendpoints: [ 'type', Bendpoints ],
  bendpointMove: [ 'type', BendpointMove ],
  bendpointMovePreview: [ 'type', BendpointMovePreview ],
  connectionSegmentMove: [ 'type', ConnectionSegmentMove ],
  bendpointSnapping: [ 'type', BendpointSnapping ]
};