(content: string)
| 29 | } |
| 30 | |
| 31 | write(content: string): void { |
| 32 | this.rl.output.unmute(); |
| 33 | this.rl.output.write(content); |
| 34 | this.rl.output.mute(); |
| 35 | } |
| 36 | |
| 37 | render(content: string, bottomContent: string = ''): void { |
| 38 | // Write message to screen and setPrompt to control backspace |
no outgoing calls
no test coverage detected