diagram-js
Version:
A toolbox for displaying and modifying diagrams on the web
17 lines (14 loc) • 414 B
JavaScript
import SelectionModule from '../selection/index.js';
import Outline from './Outline.js';
import MultiSelectionOutline from './MultiSelectionOutline.js';
/**
* @type { import('didi').ModuleDeclaration }
*/
export default {
__depends__: [
SelectionModule
],
__init__: [ 'outline', 'multiSelectionOutline' ],
outline: [ 'type', Outline ],
multiSelectionOutline: [ 'type', MultiSelectionOutline ]
};