diagram-js
Version:
A toolbox for displaying and modifying diagrams on the web
15 lines (12 loc) • 299 B
JavaScript
import KeyboardModule from '../../features/keyboard/index.js';
import KeyboardMove from './KeyboardMove.js';
/**
* @type { import('didi').ModuleDeclaration }
*/
export default {
__depends__: [
KeyboardModule
],
__init__: [ 'keyboardMove' ],
keyboardMove: [ 'type', KeyboardMove ]
};