(handler: QuestionHandler | undefined)
| 97 | } |
| 98 | |
| 99 | setQuestionHandler(handler: QuestionHandler | undefined): void { |
| 100 | this.ensureOpen(); |
| 101 | this.rpc.setQuestionHandler(this.id, handler); |
| 102 | } |
| 103 | |
| 104 | async prompt(input: string | PromptInput): Promise<void> { |
| 105 | this.ensureOpen(); |
no test coverage detected