index.js 342 B

12345678910111213
  1. import CopyPasteModule from 'diagram-js/lib/features/copy-paste';
  2. import BpmnCopyPaste from './BpmnCopyPaste';
  3. import ModdleCopy from './ModdleCopy';
  4. export default {
  5. __depends__: [
  6. CopyPasteModule
  7. ],
  8. __init__: [ 'bpmnCopyPaste', 'moddleCopy' ],
  9. bpmnCopyPaste: [ 'type', BpmnCopyPaste ],
  10. moddleCopy: [ 'type', ModdleCopy ]
  11. };