(seconds: number)
| 41 | } |
| 42 | |
| 43 | seekTo(seconds: number): Promise<void> { |
| 44 | return this.#withHost((host) => host.seekTo(seconds)); |
| 45 | } |
| 46 | |
| 47 | subscribe(listener: PlaybackListener): () => void { |
| 48 | return this.#withHost((host) => host.subscribe(listener)); |
no test coverage detected