You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
355 B
15 lines
355 B
2 years ago
|
import CopyPasteModule from '../copy-paste';
|
||
|
import ReplaceModule from 'diagram-js/lib/features/replace';
|
||
|
import SelectionModule from 'diagram-js/lib/features/selection';
|
||
|
|
||
|
import BpmnReplace from './BpmnReplace';
|
||
|
|
||
|
export default {
|
||
|
__depends__: [
|
||
|
CopyPasteModule,
|
||
|
ReplaceModule,
|
||
|
SelectionModule
|
||
|
],
|
||
|
bpmnReplace: [ 'type', BpmnReplace ]
|
||
|
};
|