(command: ICommand)
| 4 | export interface ICommandManager { |
| 5 | init(options: CommandManagerInitOptions): void; |
| 6 | execute(command: ICommand): Promise<void>; |
| 7 | executeBatch(commands: ICommand[]): Promise<void>; |
| 8 | undo(): Promise<void>; |
| 9 | redo(): Promise<void>; |
no outgoing calls
no test coverage detected