(text: string | undefined)
| 28 | /** The current text of the spinner. */ |
| 29 | private _text: string = ''; |
| 30 | private set text(text: string | undefined) { |
| 31 | this._text = text || this._text; |
| 32 | this.printFrame(this.getNextSpinnerCharacter(), text); |
| 33 | } |
| 34 | private get text(): string { |
| 35 | return this._text; |
| 36 | } |
no test coverage detected