(input: ResumeSessionInput)
| 147 | } |
| 148 | |
| 149 | async resumeSession(input: ResumeSessionInput): Promise<ResumedSessionSummary> { |
| 150 | const rpc = await this.getRpc(); |
| 151 | return rpc.resumeSession({ ...input, sessionId: input.id }); |
| 152 | } |
| 153 | |
| 154 | async resumeSessionWithKaos( |
| 155 | input: ResumeSessionInput, |
nothing calls this directly
no test coverage detected