UNPKG

btch-downloader

Version:

A lightweight TypeScript/JavaScript library for downloading media from social media platforms

24 lines 1.86 kB
import type { TikTokResponse, InstagramResponse, TwitterResponse, YouTubeResponse, FacebookResponse, MediaFireResponse, CapCutResponse, GoogleDriveResponse, PinterestResponse, AioResponse, XiaohongshuResponse, DouyinResponse, SnackVideoResponse, CocofunResponse, SpotifyResponse, YtsResponse, SoundCloudResponse, ThreadsResponse } from './Types'; declare const issues: string; declare const wm: string; declare const version: string; declare function ttdl(url: string): Promise<TikTokResponse>; declare function igdl(url: string): Promise<InstagramResponse>; declare function twitter(url: string): Promise<TwitterResponse>; declare function youtube(url: string): Promise<YouTubeResponse>; declare function fbdown(url: string): Promise<FacebookResponse>; declare function mediafire(url: string): Promise<MediaFireResponse>; declare function capcut(url: string): Promise<CapCutResponse>; declare function aio(url: string): Promise<AioResponse>; declare function gdrive(url: string): Promise<GoogleDriveResponse>; declare function pinterest(query: string): Promise<PinterestResponse>; declare function xiaohongshu(url: string): Promise<XiaohongshuResponse>; declare function douyin(url: string): Promise<DouyinResponse>; declare function snackvideo(url: string): Promise<SnackVideoResponse>; declare function cocofun(url: string): Promise<CocofunResponse>; declare function spotify(url: string): Promise<SpotifyResponse>; declare function yts(query: string): Promise<YtsResponse>; declare function soundcloud(url: string): Promise<SoundCloudResponse>; declare function threads(url: string): Promise<ThreadsResponse>; export { fbdown, igdl, ttdl, twitter, youtube, mediafire, capcut, gdrive, pinterest, aio, xiaohongshu, douyin, snackvideo, cocofun, spotify, yts, soundcloud, threads, version as VERSION, wm as developer, issues }; //# sourceMappingURL=index.d.ts.map