(prompt: string)
| 633 | } |
| 634 | |
| 635 | async question(prompt: string): Promise<string> { |
| 636 | return new Promise((resolve) => { |
| 637 | this.rl.question(prompt, (answer) => resolve(answer.trim())); |
| 638 | }); |
| 639 | } |
| 640 | |
| 641 | close(): void { |
| 642 | this.rl.close(); |
no outgoing calls
no test coverage detected