(input: ListSessionsOptions = {})
| 185 | } |
| 186 | |
| 187 | async listSessions(input: ListSessionsOptions = {}): Promise<readonly SessionSummary[]> { |
| 188 | const rpc = await this.getRpc(); |
| 189 | return rpc.listSessions(input); |
| 190 | } |
| 191 | |
| 192 | async renameSession(input: RenameSessionInput): Promise<void> { |
| 193 | const rpc = await this.getRpc(); |
nothing calls this directly
no test coverage detected