diagram-js
Version:
A toolbox for displaying and modifying diagrams on the web
20 lines (16 loc) • 542 B
JavaScript
import InteractionEventsModule from '../interaction-events/index.js';
import Selection from './Selection.js';
import SelectionVisuals from './SelectionVisuals.js';
import SelectionBehavior from './SelectionBehavior.js';
/**
* @type { import('didi').ModuleDeclaration }
*/
export default {
__init__: [ 'selectionVisuals', 'selectionBehavior' ],
__depends__: [
InteractionEventsModule,
],
selection: [ 'type', Selection ],
selectionVisuals: [ 'type', SelectionVisuals ],
selectionBehavior: [ 'type', SelectionBehavior ]
};