index.js 274 B

1234567891011
  1. import KeyboardModule from 'diagram-js/lib/features/keyboard';
  2. import BpmnKeyboardBindings from './BpmnKeyboardBindings';
  3. export default {
  4. __depends__: [
  5. KeyboardModule
  6. ],
  7. __init__: [ 'keyboardBindings' ],
  8. keyboardBindings: [ 'type', BpmnKeyboardBindings ]
  9. };