(tracks: Track[], index: number)
| 34 | } |
| 35 | |
| 36 | addAt(tracks: Track[], index: number) { |
| 37 | return this.#withHost((h) => h.addAt(tracks, index)); |
| 38 | } |
| 39 | |
| 40 | removeByIds(ids: string[]) { |
| 41 | return this.#withHost((h) => h.removeByIds(ids)); |
no test coverage detected