Common stuff initial

This commit is contained in:
Torben Pi Jensen
2023-11-05 13:54:25 +01:00
parent d82afc5e9d
commit 345681affb
5 changed files with 65 additions and 0 deletions
+12
View File
@@ -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
}