UNPKG

facebook-event-scraper-fetch

Version:

A slim module for scraping Facebook event data in milliseconds.

11 lines (10 loc) 262 B
export interface ProxyConfig { host: string; port: number; protocol?: 'http' | 'https'; auth?: { username: string; password: string; }; } export declare const fetchEvent: (url: string, proxy?: ProxyConfig) => Promise<string>;