Fix normalized types
This commit is contained in:
parent
c8b1b4d394
commit
06d253228a
1 changed files with 1 additions and 1 deletions
|
@ -167,7 +167,7 @@ export type Album = {
|
|||
} & { songs?: Song[] };
|
||||
|
||||
export type Song = {
|
||||
album: string | undefined;
|
||||
album: string | null;
|
||||
albumArtists: RelatedArtist[];
|
||||
albumId: string;
|
||||
artistName: string;
|
||||
|
|
Reference in a new issue