UNPKG

slyrics

Version:

Scrape Lyrics without API Key

6 lines (5 loc) 172 B
import type { ILyricsSearchResult } from "./ILyricsSearchResult"; export interface IProvider { name: string; search(query: string): Promise<ILyricsSearchResult>; }