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.
14 lines
355 B
14 lines
355 B
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 ] |
|
};
|
|
|