(command: IPublicTypeCommand)
| 21 | } |
| 22 | |
| 23 | registerCommand(command: IPublicTypeCommand): void { |
| 24 | this[commandSymbol].registerCommand(command, this[optionsSymbol]); |
| 25 | } |
| 26 | |
| 27 | batchExecuteCommand(commands: { name: string; args: IPublicTypeCommandHandlerArgs }[]): void { |
| 28 | this[commandSymbol].batchExecuteCommand(commands, this[pluginContextSymbol]); |
nothing calls this directly
no test coverage detected