UNPKG

slyrics

Version:

Scrape Lyrics without API Key

9 lines (8 loc) 368 B
import { IProvider } from "../interfaces/IProvider"; import { ILyricsSearchResult } from "../interfaces/ILyricsSearchResult"; export declare abstract class BaseProvider implements IProvider { name: string; constructor(name: string); search(query: string): Promise<ILyricsSearchResult>; formatURL(templateStr: string, ...toReplace: string[]): string; }