@klettelars/soundcloud-downloader
Version:
Download Soundcloud audio with Node.js
20 lines (19 loc) • 896 B
TypeScript
import { AxiosInstance } from 'axios';
import { TrackInfo, User, SetInfo } from './info';
import { PaginatedQuery } from './util';
export interface RelatedResponse<T> extends PaginatedQuery<T> {
variant: string;
}
export interface SearchOptions {
limit?: number;
offset?: number;
resourceType?: SoundcloudResource | 'all';
query?: string;
nextHref?: string;
}
export declare type SearchResponseAll = PaginatedQuery<User | SetInfo | TrackInfo>;
export declare type SoundcloudResource = 'tracks' | 'users' | 'albums' | 'playlists';
/** @internal */
export declare const search: (options: SearchOptions, axiosInstance: AxiosInstance, clientID: string) => Promise<SearchResponseAll>;
/** @internal */
export declare const related: <T extends TrackInfo>(id: number, limit: number, offset: number, axiosInstance: AxiosInstance, clientID: string) => Promise<RelatedResponse<T>>;