UpdateSemanticParentHandler.d.ts 425 B

123456789101112131415161718
  1. /**
  2. * @implements {CommandHandler}
  3. *
  4. */
  5. export default class UpdateSemanticParentHandler implements CommandHandler {
  6. static $inject: string[];
  7. /**
  8. * @param bpmnUpdater
  9. */
  10. constructor(bpmnUpdater: BpmnUpdater);
  11. execute(context: any): any[];
  12. revert(context: any): any[];
  13. }
  14. type CommandHandler = import('diagram-js/lib/command/CommandHandler').default;
  15. type BpmnUpdater = import('../BpmnUpdater').default;