(params: SshPromptRequestParams)
| 180 | } |
| 181 | |
| 182 | async requestPrompt(params: SshPromptRequestParams): Promise<string> { |
| 183 | const resolution = await this.requestPromptDetailed(params); |
| 184 | return resolution.response; |
| 185 | } |
| 186 | |
| 187 | respond(requestId: string, response: string): void { |
| 188 | this.finalizeRequest(requestId, { response, reason: "responded" }); |
no test coverage detected