Add RadioPlay playlist support

This commit is contained in:
Christer Warén
2023-11-28 22:54:22 +02:00
parent c21082c67b
commit 2a7dca38f2
6 changed files with 114 additions and 55 deletions

View File

@ -8,9 +8,10 @@ export interface station {
[key: string]: string
},
playlist?: {
type: "supla" | "yle",
type: "radioplay" | "supla" | "yle",
address: string | string
}
track?: string;
}
export default class Stations extends Array {