ultra-lyrics
Version:
Lyrics Fetcher
8 lines (7 loc) • 331 B
TypeScript
import { SearchResults, UltraLyricsFunctionReturnType } from '../Types';
/**
* Search for lyrics
* @param term The query to search for
* @returns A Promise that resolves to an object containing the search results
*/
export declare const search: (term: string | number) => Promise<UltraLyricsFunctionReturnType<SearchResults>>;