diagram-js
Version:
A toolbox for displaying and modifying diagrams on the web
24 lines (20 loc) • 544 B
JavaScript
import CommandModule from '../../command';
import ChangeSupportModule from '../change-support';
import SelectionModule from '../selection';
import RulesModule from '../rules';
import Modeling from './Modeling';
import BaseLayouter from '../../layout/BaseLayouter';
/**
* @type { import('didi').ModuleDeclaration }
*/
export default {
__depends__: [
CommandModule,
ChangeSupportModule,
SelectionModule,
RulesModule
],
__init__: [ 'modeling' ],
modeling: [ 'type', Modeling ],
layouter: [ 'type', BaseLayouter ]
};