(input: SessionIdRpcInput)
| 491 | } |
| 492 | |
| 493 | async listPluginCommands(input: SessionIdRpcInput): Promise<readonly PluginCommandDef[]> { |
| 494 | const rpc = await this.getRpc(); |
| 495 | return rpc.listPluginCommands({ sessionId: input.sessionId }); |
| 496 | } |
| 497 | |
| 498 | async listBackgroundTasks( |
| 499 | input: SessionIdRpcInput & { activeOnly?: boolean; limit?: number }, |
nothing calls this directly
no test coverage detected