More stuff
This commit is contained in:
Vendored
+6
-2
@@ -9,8 +9,12 @@ export declare class Song {
|
||||
image: string;
|
||||
constructor(type: SongType, title: string, songId: string, image: string);
|
||||
}
|
||||
export declare class PlayingSong extends Song {
|
||||
export declare class QueuedSong extends Song {
|
||||
listener: string;
|
||||
constructor(type: SongType, title: string, songId: string, image: string, listener: string);
|
||||
}
|
||||
export declare class PlayingSong extends QueuedSong {
|
||||
length: number;
|
||||
position: number;
|
||||
constructor(type: SongType, title: string, songId: string, image: string, length: number, position: number);
|
||||
constructor(type: SongType, title: string, songId: string, image: string, listener: string, length: number, position: number);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user