mirror of
https://github.com/FlipsideCrypto/DefinitelyTyped.git
synced 2026-02-06 10:56:53 +00:00
Remove unneeded cast in lyricist tests (#43017)
This commit is contained in:
parent
3692d1c231
commit
22fe6436a5
@ -23,7 +23,7 @@ Promise
|
||||
const artistByName: Artist = results[2];
|
||||
const searchResult: SearchResult[] = results[3];
|
||||
const song: Song = results[4];
|
||||
const songsByArtist: SongByArtist[] = results[5] as SongByArtist[];
|
||||
const songsByArtist: SongByArtist[] = results[5];
|
||||
|
||||
console.log('album', album.name);
|
||||
console.log('artist', artist.name);
|
||||
|
||||
Loading…
Reference in New Issue
Block a user