@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
7 lines (6 loc) • 310 B
TypeScript
/** @internal @packageDocumentation */
/// <reference types="node" />
import { AxiosInstance } from 'axios';
import m3u8stream from 'm3u8stream';
declare const fromURL: (url: string, clientID: string, axiosInstance: AxiosInstance) => Promise<NodeJS.ReadableStream | m3u8stream.Stream>;
export default fromURL;