(json: any, onError?: (error: string) => void)
| 79 | } |
| 80 | |
| 81 | function parse(json: any, onError?: (error: string) => void): Playlist { |
| 82 | return overwritePlaylistData(deepCopy(DEFAULT_PLAYLIST_DATA), json, onError); |
| 83 | } |
| 84 | } |
| 85 | |
| 86 | export const DEFAULT_PLAYLIST_DATA: Playlist = { |
no test coverage detected