UNPKG

slyrics

Version:

Scrape Lyrics without API Key

9 lines (8 loc) 379 B
import { ILyricsSearchResult } from "../interfaces/ILyricsSearchResult"; import { BaseProvider, Lyrics } from "../structures"; export declare class MelonProvider extends BaseProvider { private baseUrls; constructor(); search(query: string): Promise<ILyricsSearchResult>; getLyricsTemplate(title: string, artist: string, melonId: string): () => Promise<Lyrics>; }