More stuff

This commit is contained in:
Torben Pi Jensen
2023-11-09 22:12:28 +01:00
parent a11237f70d
commit 4d3834be1d
6 changed files with 36 additions and 14 deletions
+6 -2
View File
@@ -9,8 +9,12 @@ export declare class Song {
image: string;
constructor(type: SongType, title: string, songId: string, image: string);
}
export declare class PlayingSong extends Song {
export declare class QueuedSong extends Song {
listener: string;
constructor(type: SongType, title: string, songId: string, image: string, listener: string);
}
export declare class PlayingSong extends QueuedSong {
length: number;
position: number;
constructor(type: SongType, title: string, songId: string, image: string, length: number, position: number);
constructor(type: SongType, title: string, songId: string, image: string, listener: string, length: number, position: number);
}