More stuff

This commit is contained in:
Torben Pi Jensen
2023-11-09 20:59:18 +01:00
parent 9c640ace62
commit c3ef658282
3 changed files with 8 additions and 8 deletions
+2 -2
View File
@@ -7,10 +7,10 @@ export declare class Song {
title: string;
songId: string;
image: string;
length: number;
constructor(type: SongType, title: string, songId: string, image: string, length: number);
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, length: number, position: number);
}