diff --git a/mixins/browsing.ts b/mixins/browsing.ts index 008e980..926df89 100644 --- a/mixins/browsing.ts +++ b/mixins/browsing.ts @@ -440,17 +440,18 @@ export async function get_song_related( } export interface BaseTimedLyrics { - lyrics: string; source: string; timed: boolean; } export interface UnTimedLyrics extends BaseTimedLyrics { timed: false; + lyrics: string | null; } export interface TimedLyrics extends BaseTimedLyrics { timed: true; + lyrics: string; timed_lyrics: { line: string; start: number;