UNPKG

@vncsprd/soundcloud-downloader

Version:
18 lines (17 loc) 506 B
import { AxiosInstance } from 'axios'; import { TrackInfo } from './info'; import { PaginatedQuery } from './util'; export interface Like { created_at: string; kind: string; track: TrackInfo; } export interface GetLikesOptions { profileUrl?: string; id?: number; limit?: number; offset?: number; nextHref?: string; } /** @internal */ export declare const getLikes: (options: GetLikesOptions, clientID: string, axiosInstance: AxiosInstance) => Promise<PaginatedQuery<Like>>;