(muted: boolean)
| 61 | } |
| 62 | |
| 63 | setMuted(muted: boolean): Promise<void> { |
| 64 | return this.#withHost((host) => host.setMuted(muted)); |
| 65 | } |
| 66 | |
| 67 | isShuffleEnabled(): Promise<boolean> { |
| 68 | return this.#withHost((host) => host.isShuffleEnabled()); |
no test coverage detected