jstd-web/node_modules/diagram-js/lib/features/global-connect/index.js

19 lines
430 B
JavaScript
Raw Normal View History

2025-11-25 15:23:22 +08:00
import ConnectModule from '../connect';
import RulesModule from '../rules';
import DraggingModule from '../dragging';
import ToolManagerModule from '../tool-manager';
import MouseModule from '../mouse';
import GlobalConnect from './GlobalConnect';
export default {
__depends__: [
ConnectModule,
RulesModule,
DraggingModule,
ToolManagerModule,
MouseModule
],
globalConnect: [ 'type', GlobalConnect ]
};