index.js 251 B

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