2018-04-02 19:01:53 +00:00
|
|
|
import KeyboardModule from 'diagram-js/lib/features/keyboard';
|
|
|
|
|
|
|
|
import BpmnKeyBindings from './BpmnKeyBindings';
|
|
|
|
|
|
|
|
export default {
|
2015-05-06 15:36:46 +00:00
|
|
|
__depends__: [
|
2018-04-02 19:01:53 +00:00
|
|
|
KeyboardModule
|
2015-05-06 15:36:46 +00:00
|
|
|
],
|
|
|
|
__init__: [ 'bpmnKeyBindings' ],
|
2018-04-02 19:01:53 +00:00
|
|
|
bpmnKeyBindings: [ 'type', BpmnKeyBindings ]
|
2016-06-14 06:43:38 +00:00
|
|
|
};
|