()
| 82 | public get playbackRate(): number { return this._player.playbackRate } |
| 83 | public set playbackRate(value: number) { this._playbackRate.innerText = value.toFixed(1) + 'x' } |
| 84 | public get duration(): number { return this._duration } |
| 85 | public set duration(value: number) { |
| 86 | if (value !== this._duration) { |
| 87 | this._duration = value |
nothing calls this directly
no test coverage detected