UNPKG

ytdl-core-discord

Version:

A ytdl-core wrapper focused on efficiency for use in Discord music bots

10 lines (7 loc) 288 B
import ytdl from 'ytdl-core'; import { Readable } from 'stream'; declare function download(link: string, options?: ytdl.downloadOptions): Promise<Readable>; declare namespace ytdlDiscord { const newDownload: typeof download & typeof ytdl; } export = ytdlDiscord.newDownload;