UNPKG

slyrics

Version:

Scrape Lyrics without API Key

7 lines (6 loc) 167 B
import type { Lyrics } from "../structures"; export interface ILyricsSearchResultItem { title: string; artist: string; getLyrics: () => Promise<Lyrics>; }