Update lyric fetcher return types

This commit is contained in:
jeffvli 2023-06-05 02:42:25 -07:00 committed by Jeff
parent 007a099951
commit d38c846e80
5 changed files with 14 additions and 9 deletions

View file

@ -1032,7 +1032,8 @@ export type LyricsResponse = SynchronizedLyricsArray | string;
export type InternetProviderLyricResponse = {
artist: string;
lyrics: string;
title: string;
name: string;
source: string;
};
export type LyricOverride = Omit<InternetProviderLyricResponse, 'lyrics'>;