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
+1 -1
View File
@@ -11,7 +11,7 @@ export class Song {
}
export class PlayingSong extends Song {
constructor(type: SongType, title: string, songId: string, image: string, public position: number) {
constructor(type: SongType, title: string, songId: string, image: string, public length: number, public position: number) {
super(type, title, songId, image);
}
}