BpmnCopyPaste.d.ts 465 B

1234567891011121314151617
  1. /**
  2. * BPMN-specific copy & paste.
  3. *
  4. */
  5. export default class BpmnCopyPaste {
  6. static $inject: string[];
  7. /**
  8. * @param bpmnFactory
  9. * @param eventBus
  10. * @param moddleCopy
  11. */
  12. constructor(bpmnFactory: BpmnFactory, eventBus: EventBus, moddleCopy: ModdleCopy);
  13. }
  14. type BpmnFactory = import('../modeling/BpmnFactory').default;
  15. type EventBus = import('diagram-js/lib/core/EventBus').default;
  16. type ModdleCopy = import('./ModdleCopy').default;