auth finished

This commit is contained in:
ju09279
2024-09-06 22:56:08 +02:00
parent b1be8502c9
commit f26529b1a3
11 changed files with 397 additions and 35 deletions

View File

@@ -6,12 +6,19 @@ export type Song = {
url: string;
previewimage: string;
mapper: string;
};
};
export type CollectionPreview = {
index: number;
name: string;
length: number;
previewimage: string;
};
export type Me = {
id: number;
name: string;
avatar_url: string;
endpoint: string;
share: boolean;
};