common/dist/dataTypes.d.ts
2023-11-05 13:54:25 +01:00

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
}