UNPKG

@hardbulls/wbsc-crawler

Version:

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

8 lines 341 B
import { Livescore } from "./Model/Livescore"; import { LivePlay } from "./Model/LivePlay"; export declare const LivescoreCrawler: { crawl: () => Promise<Livescore[]>; crawlPlay: (gameId: string) => Promise<LivePlay>; crawlByGameId: (gameId: string) => Promise<Livescore | null>; }; //# sourceMappingURL=LivescoreCrawler.d.ts.map