diagram-js
Version:
A toolbox for displaying and modifying diagrams on the web
16 lines (13 loc) • 316 B
JavaScript
import HoverFixModule from '../hover-fix/index.js';
import SelectionModule from '../selection/index.js';
import Dragging from './Dragging.js';
/**
* @type { import('didi').ModuleDeclaration }
*/
export default {
__depends__: [
HoverFixModule,
SelectionModule,
],
dragging: [ 'type', Dragging ],
};