Loading artist images from navidrome

This commit is contained in:
simojenki
2021-03-03 22:59:15 +11:00
parent ce6c1638fd
commit 4dae907826
8 changed files with 273 additions and 74 deletions

View File

@@ -26,6 +26,11 @@ export type AuthFailure = {
export type Artist = {
id: string;
name: string;
image: {
small: string | undefined,
medium: string | undefined,
large: string | undefined,
}
};
export type Album = {