Moved tags to song instead of on playing song

This commit is contained in:
Torben Pi Jensen
2026-05-09 11:23:46 +02:00
parent 5211a4a976
commit 9b4103a8b2
3 changed files with 15 additions and 15 deletions
+4 -4
View File
@@ -7,20 +7,20 @@ export declare class Song {
title: string;
songId: string;
image: string;
tags: string[];
inAutoPlay: boolean;
constructor(type: SongType, title: string, songId: string, image: string, inAutoPlay: boolean);
constructor(type: SongType, title: string, songId: string, image: string, tags: string[], inAutoPlay: boolean);
}
export declare class QueuedSong extends Song {
listener: string;
inAutoPlay: boolean;
constructor(type: SongType, title: string, songId: string, image: string, listener: string, inAutoPlay: boolean);
constructor(type: SongType, title: string, songId: string, image: string, tags: string[], listener: string, inAutoPlay: boolean);
}
export declare class PlayingSong extends QueuedSong {
length: number;
position: number;
tags: string[];
inAutoPlay: boolean;
constructor(type: SongType, title: string, songId: string, image: string, listener: string, length: number, position: number, tags: string[], inAutoPlay: boolean);
constructor(type: SongType, title: string, songId: string, image: string, tags: string[], listener: string, length: number, position: number, inAutoPlay: boolean);
}
export declare class Playlist {
title: string;