(text?: string)
| 38 | constructor(); |
| 39 | constructor(text: string); |
| 40 | constructor(text?: string) { |
| 41 | this.hideCursor(); |
| 42 | this.text = text; |
| 43 | } |
| 44 | |
| 45 | /** Updates the spinner text with the provided text. */ |
| 46 | update(text: string) { |
nothing calls this directly
no test coverage detected