Adding songtype to playlists

This commit is contained in:
Thomas Viesmose Birch
2024-05-04 17:31:58 +02:00
parent 58f972156e
commit 5211a4a976
3 changed files with 11 additions and 6 deletions
+4 -2
View File
@@ -25,11 +25,13 @@ export declare class PlayingSong extends QueuedSong {
export declare class Playlist {
title: string;
listener: string;
type: SongType;
songs: Song[];
constructor(title: string, listener: string, songs: Song[]);
constructor(title: string, listener: string, type: SongType, songs: Song[]);
}
export declare class PlaylistDescription {
title: string;
listener: string;
constructor(title: string, listener: string);
type: SongType;
constructor(title: string, listener: string, type: SongType);
}