Added playlist

This commit is contained in:
Torben Pi Jensen
2024-02-03 10:31:04 +01:00
parent 29d8ee56f6
commit 9ce896cd33
8 changed files with 133 additions and 8 deletions
+6
View File
@@ -18,3 +18,9 @@ export declare class PlayingSong extends QueuedSong {
position: number;
constructor(type: SongType, title: string, songId: string, image: string, listener: string, length: number, position: number);
}
export declare class Playlist {
title: string;
listener: string;
songs: Song[];
constructor(title: string, listener: string, songs: Song[]);
}