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