Upgrade with history search
This commit is contained in:
Vendored
+8
-3
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user