(input: SessionIdRpcInput)
| 180 | } |
| 181 | |
| 182 | async closeSession(input: SessionIdRpcInput): Promise<void> { |
| 183 | const rpc = await this.getRpc(); |
| 184 | return rpc.closeSession({ sessionId: input.sessionId }); |
| 185 | } |
| 186 | |
| 187 | async listSessions(input: ListSessionsOptions = {}): Promise<readonly SessionSummary[]> { |
| 188 | const rpc = await this.getRpc(); |
nothing calls this directly
no test coverage detected