Add albums to Artist

This commit is contained in:
simojenki
2021-03-05 18:36:38 +11:00
parent 17d48434c0
commit 979f72206e
6 changed files with 309 additions and 206 deletions

View File

@@ -35,11 +35,14 @@ export type Images = {
}
export type Artist = ArtistSummary & {
albums: Album[]
};
export type Album = {
id: string;
name: string;
year: string | undefined;
genre: string | undefined;
};
export type Paging = {