mirror of
https://github.com/Dvorinka/swingmusic-extended.git
synced 2026-06-04 12:33:03 +00:00
attach artist page link to ArtistName component
+ separate fetching artist albums with fetching artist info + include limit when fetching artist albums + refactor interfaces
This commit is contained in:
committed by
Mungai Njoroge
parent
e54fea2d4d
commit
580dce1da9
+2
-6
@@ -9,7 +9,7 @@ export interface Track extends AlbumDisc {
|
||||
id: string;
|
||||
title: string;
|
||||
album?: string;
|
||||
artist: string[];
|
||||
artist: Artist[];
|
||||
albumartist: string;
|
||||
albumhash?: string;
|
||||
folder?: string;
|
||||
@@ -37,11 +37,7 @@ export interface Folder {
|
||||
export interface Album {
|
||||
albumid: string;
|
||||
title: string;
|
||||
albumartists: {
|
||||
name: string;
|
||||
hash: string;
|
||||
image: string;
|
||||
}[];
|
||||
albumartists: Artist[];
|
||||
count: number;
|
||||
duration: number;
|
||||
date: string;
|
||||
|
||||
Reference in New Issue
Block a user