13 lines
283 B
TypeScript
13 lines
283 B
TypeScript
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
|
|
}
|