* Write raw text to stdout (for streaming).
(text: string)
| 162 | * Write raw text to stdout (for streaming). |
| 163 | */ |
| 164 | writeRaw(text: string): void { |
| 165 | if (this.disabled) return |
| 166 | this.stdout.write(text) |
| 167 | } |
| 168 | |
| 169 | /** |
| 170 | * Check if a message has already been fully displayed. |
no test coverage detected