UNPKG

scdl-core

Version:
5 lines (4 loc) 382 B
import { Track, TrendingOptions, TrendingTrackResponse } from "../@types/track"; export declare const getTracksByIds: (clientId: string, ids: number[]) => Promise<Track[]>; export declare const getTrack: (clientId: string, url: string) => Promise<Track>; export declare const getTrending: (clientId: string, options?: TrendingOptions | undefined) => Promise<TrendingTrackResponse>;