Fix normalized types

This commit is contained in:
jeffvli 2023-05-20 20:22:10 -07:00
parent c8b1b4d394
commit 06d253228a

View file

@ -167,7 +167,7 @@ export type Album = {
} & { songs?: Song[] };
export type Song = {
album: string | undefined;
album: string | null;
albumArtists: RelatedArtist[];
albumId: string;
artistName: string;