(commands: { name: string; args: IPublicTypeCommandHandlerArgs }[])
| 25 | } |
| 26 | |
| 27 | batchExecuteCommand(commands: { name: string; args: IPublicTypeCommandHandlerArgs }[]): void { |
| 28 | this[commandSymbol].batchExecuteCommand(commands, this[pluginContextSymbol]); |
| 29 | } |
| 30 | |
| 31 | executeCommand(name: string, args: IPublicTypeCommandHandlerArgs): void { |
| 32 | this[commandSymbol].executeCommand(name, args); |
nothing calls this directly
no test coverage detected