Adding songtype to playlists
This commit is contained in:
Vendored
+4
-2
@@ -25,11 +25,13 @@ export declare class PlayingSong extends QueuedSong {
|
||||
export declare class Playlist {
|
||||
title: string;
|
||||
listener: string;
|
||||
type: SongType;
|
||||
songs: Song[];
|
||||
constructor(title: string, listener: string, songs: Song[]);
|
||||
constructor(title: string, listener: string, type: SongType, songs: Song[]);
|
||||
}
|
||||
export declare class PlaylistDescription {
|
||||
title: string;
|
||||
listener: string;
|
||||
constructor(title: string, listener: string);
|
||||
type: SongType;
|
||||
constructor(title: string, listener: string, type: SongType);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user