More stuff

This commit is contained in:
Torben Pi Jensen
2023-11-09 20:09:25 +01:00
parent 6a3eb21439
commit 2d561d15cd
3 changed files with 5 additions and 3 deletions
+2 -1
View File
@@ -10,6 +10,7 @@ export declare class Song {
constructor(type: SongType, title: string, songId: string, image: string);
}
export declare class PlayingSong extends Song {
length: number;
position: number;
constructor(type: SongType, title: string, songId: string, image: string, position: number);
constructor(type: SongType, title: string, songId: string, image: string, length: number, position: number);
}