Upgrade with history search

This commit is contained in:
Torben Pi Jensen
2026-05-09 13:12:37 +02:00
parent 9b4103a8b2
commit 8b2ab7958f
13 changed files with 262 additions and 286 deletions
+8 -3
View File
@@ -17,10 +17,15 @@ export declare class QueuedSong extends Song {
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;
inAutoPlay: boolean;
constructor(type: SongType, title: string, songId: string, image: string, tags: string[], listener: string, length: number, position: number, inAutoPlay: boolean);
constructor(type: SongType, title: string, songId: string, image: string, tags: string[], listener: string, inAutoPlay: boolean);
}
export declare class PlayerControl {
type: SongType;
songId: string;
position: number;
length: number;
constructor(type: SongType, songId: string, position: number, length: number);
}
export declare class Playlist {
title: string;