UNPKG

@hardbulls/wbsc-crawler

Version:

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

12 lines 270 B
import { GameStatus } from "./GameStatus"; export interface Game { status: GameStatus; home: string; away: string; homeScore: number; awayScore: number; venue: string; date: Date; note?: string | null; } //# sourceMappingURL=Game.d.ts.map