Common stuff initial
This commit is contained in:
Vendored
+2
-2
@@ -3,8 +3,8 @@ export declare class Song {
|
||||
title: string;
|
||||
url: string;
|
||||
image: string;
|
||||
length: number;
|
||||
constructor(type: SongType, title: string, url: string, image: string, length: number);
|
||||
length: number | null;
|
||||
constructor(type: SongType, title: string, url: string, image: string, length?: number | null);
|
||||
}
|
||||
export declare enum SongType {
|
||||
YouTube = 0,
|
||||
|
||||
Reference in New Issue
Block a user