UNPKG

@hardbulls/wbsc-crawler

Version:

Tool to crawl events, leagues and statistics from WBSC based websites.

9 lines 291 B
import { Game } from "./Model/Game"; export interface GameCrawlerOptions { timezone?: string; tickerUrlPattern?: string; } export declare const GameCrawler: { crawl: (url: string, options?: GameCrawlerOptions) => Promise<Array<Game>>; }; //# sourceMappingURL=GameCrawler.d.ts.map