UNPKG

fbvid-downloader

Version:

Easily download public Facebook videos in MP4 format using Node.js. Simple, fast, and reliable.

8 lines (5 loc) 185 B
type Downloader = { video_url: string; }; declare const downloadFacebookVideo: ({ video_url }: Downloader) => Promise<unknown>; export { type Downloader, downloadFacebookVideo };