This commit is contained in:
ju09279
2024-08-11 21:55:11 +02:00
commit c3c4de3c44
68 changed files with 5993 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
export type Song = {
hash: string;
name: string;
artist: string;
length: number;
url: string;
previewimage: string;
mapper: string;
};
export type CollectionPreview = {
index: number;
name: string;
length: number;
previewimage: string;
};