We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bedf4a8 commit a895231Copy full SHA for a895231
README.md
@@ -38,6 +38,7 @@ getLyrics(options).then((lyrics) => console.log(lyrics));
38
getSong(options).then((song) =>
39
console.log(`
40
${song.id}
41
+ ${song.title}
42
${song.url}
43
${song.albumArt}
44
${song.lyrics}`)
@@ -68,6 +69,7 @@ type options {
68
69
```
70
type song {
71
id: number; // Genius song id
72
+ title: string; // Song title
73
url: string; // Genius webpage URL for the song
74
lyrics: string; // Song lyrics
75
albumArt: string; // URL of the album art image (jpg/png)
0 commit comments