slyrics
Version:
Scrape Lyrics without API Key
9 lines (8 loc) • 361 B
TypeScript
import type { Lyrics } from ".";
import type { ILyricsSearchResultItem } from "../interfaces/ILyricsSearchResultItem";
export declare class LyricsSearchResultItem implements ILyricsSearchResultItem {
title: string;
artist: string;
getLyrics: () => Promise<Lyrics>;
constructor(title: string, artist: string, getLyrics: () => Promise<Lyrics>);
}