IdClaimHandler.d.ts 446 B

12345678910111213141516171819202122
  1. /**
  2. * @implements {CommandHandler}
  3. *
  4. */
  5. export default class IdClaimHandler implements CommandHandler {
  6. static $inject: string[];
  7. /**
  8. * @param moddle
  9. */
  10. constructor(moddle: Moddle);
  11. execute(context: any): any[];
  12. /**
  13. * Command revert implementation.
  14. */
  15. revert(context: any): any[];
  16. }
  17. type CommandHandler = import('diagram-js/lib/command/CommandHandler').default;
  18. type Moddle = import('../../../model/Types').Moddle;