index.js 241 B

12345678910111213
  1. import HoverFixModule from '../hover-fix';
  2. import SelectionModule from '../selection';
  3. import Dragging from './Dragging';
  4. export default {
  5. __depends__: [
  6. HoverFixModule,
  7. SelectionModule,
  8. ],
  9. dragging: [ 'type', Dragging ],
  10. };