common/dist/dataTypes.d.ts
2023-11-05 15:27:38 +01:00

13 lines
298 B
TypeScript

export declare class Song {
type: SongType;
title: string;
url: string;
image: string;
length: number | null;
constructor(type: SongType, title: string, url: string, image: string, length?: number | null);
}
export declare enum SongType {
YouTube = 0,
Spotify = 1
}