Skip to content

Commit a895231

Browse files
authored
Update README.md
1 parent bedf4a8 commit a895231

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ getLyrics(options).then((lyrics) => console.log(lyrics));
3838
getSong(options).then((song) =>
3939
console.log(`
4040
${song.id}
41+
${song.title}
4142
${song.url}
4243
${song.albumArt}
4344
${song.lyrics}`)
@@ -68,6 +69,7 @@ type options {
6869
```
6970
type song {
7071
id: number; // Genius song id
72+
title: string; // Song title
7173
url: string; // Genius webpage URL for the song
7274
lyrics: string; // Song lyrics
7375
albumArt: string; // URL of the album art image (jpg/png)

0 commit comments

Comments
 (0)