UNPKG

slyrics

Version:

Scrape Lyrics without API Key

9 lines (8 loc) 211 B
/// <reference types="node" /> import type { IProvider } from "./IProvider"; export interface ILyrics { provider: IProvider; lyrics: string | null; albumCover?: string | Buffer; title: string; }