bpmn-js
Version:
A bpmn 2.0 toolkit and web modeler
23 lines (18 loc) • 446 B
TypeScript
/**
* @implements {CommandHandler}
*
*/
export default class IdClaimHandler implements CommandHandler {
static $inject: string[];
/**
* @param moddle
*/
constructor(moddle: Moddle);
execute(context: any): any[];
/**
* Command revert implementation.
*/
revert(context: any): any[];
}
type CommandHandler = import("diagram-js/lib/command/CommandHandler").default;
type Moddle = import("../../../model/Types").Moddle;