Added inAutoPlay property to songs
This commit is contained in:
Vendored
+6
-3
@@ -7,17 +7,20 @@ export declare class Song {
|
||||
title: string;
|
||||
songId: string;
|
||||
image: string;
|
||||
constructor(type: SongType, title: string, songId: string, image: string);
|
||||
inAutoPlay: boolean;
|
||||
constructor(type: SongType, title: string, songId: string, image: string, inAutoPlay: boolean);
|
||||
}
|
||||
export declare class QueuedSong extends Song {
|
||||
listener: string;
|
||||
constructor(type: SongType, title: string, songId: string, image: string, listener: string);
|
||||
inAutoPlay: boolean;
|
||||
constructor(type: SongType, title: string, songId: string, image: string, listener: string, inAutoPlay: boolean);
|
||||
}
|
||||
export declare class PlayingSong extends QueuedSong {
|
||||
length: number;
|
||||
position: number;
|
||||
tags: string[];
|
||||
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, listener: string, length: number, position: number, tags: string[], inAutoPlay: boolean);
|
||||
}
|
||||
export declare class Playlist {
|
||||
title: string;
|
||||
|
||||
Reference in New Issue
Block a user