UNPKG

@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

9 lines (8 loc) 543 B
import { AxiosInstance } from "axios"; declare const isURL: (url: string, testMobile?: boolean | undefined, testFirebase?: boolean | undefined) => boolean; export declare const isPlaylistURL: (url: string) => boolean; export declare const isPersonalizedTrackURL: (url: string) => boolean; export declare const stripMobilePrefix: (url: string) => string; export declare const isFirebaseURL: (url: string) => boolean; export declare const convertFirebaseURL: (url: string, axiosInstance: AxiosInstance) => Promise<string>; export default isURL;