UNPKG

slyrics

Version:

Scrape Lyrics without API Key

13 lines (12 loc) 458 B
/// <reference types="node" /> import type { ILyrics } from "../interfaces/ILyrics"; import type { BaseProvider } from "."; export declare class Lyrics implements ILyrics { provider: BaseProvider; lyrics: string | null; title: string; artist: string; url: string; albumCover?: string | Buffer; constructor(provider: BaseProvider, title: string, artist: string, lyrics: string | null, url: string, albumCover?: string | Buffer); }