(input: RenameSessionInput)
| 190 | } |
| 191 | |
| 192 | async renameSession(input: RenameSessionInput): Promise<void> { |
| 193 | const rpc = await this.getRpc(); |
| 194 | return rpc.renameSession({ |
| 195 | sessionId: input.id, |
| 196 | title: input.title, |
| 197 | }); |
| 198 | } |
| 199 | |
| 200 | async exportSession(input: ExportSessionInput): Promise<ExportSessionResult> { |
| 201 | const rpc = await this.getRpc(); |
nothing calls this directly
no test coverage detected