@snwfdhmp/soundcloud-downloader
Version:
Download Soundcloud audio with Node.js, this is a forked version, the original script was written by @zackradisic and forked by @nasheedstation
18 lines (17 loc) • 506 B
TypeScript
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>>;