Interface LyricsOutput

interface LyricsOutput {
    album: undefined | string;
    artist: undefined | string;
    cached: boolean;
    lyrics: Lyrics;
    track: undefined | string;
    trackId: string;
}

Properties

album: undefined | string

Song's album

artist: undefined | string

Song's artist(s)

cached: boolean

Whetever the song data was retrieved from the cache rather than the APIs

lyrics: Lyrics

Object with track's avaible lyrics

track: undefined | string

Song's name

trackId: string

Fetched track's ID