UNPKG

@kieler/klighd-core

Version:

Core KLighD diagram visualization with Sprotty

29 lines 1.01 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); /* * KIELER - Kiel Integrated Environment for Layout Eclipse RichClient * * http://rtsys.informatik.uni-kiel.de/kieler * * Copyright 2019 by * + Kiel University * + Department of Computer Science * + Real-Time and Embedded Systems Group * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License 2.0 which is available at * http://www.eclipse.org/legal/epl-2.0. * * SPDX-License-Identifier: EPL-2.0 */ const inversify_1 = require("inversify"); const sprotty_1 = require("sprotty"); const action_listener_1 = require("./action-listener"); /** * Dependency injection module that adds functionality for triggering KLighD actions. */ const actionModule = new inversify_1.ContainerModule((bind) => { bind(sprotty_1.TYPES.MouseListener).to(action_listener_1.ActionListener); }); exports.default = actionModule; //# sourceMappingURL=actions-module.js.map