()
| 18 | cursor = 0; |
| 19 | |
| 20 | private get _value(): T['value'] { |
| 21 | return this.options[this.cursor].value; |
| 22 | } |
| 23 | |
| 24 | private get _enabledOptions(): T[] { |
| 25 | return this.options.filter((option) => option.disabled !== true); |
nothing calls this directly
no outgoing calls
no test coverage detected