@hardbulls/wbsc-crawler
Version:
Tool to crawl events, leagues and statistics from WBSC based websites.
18 lines • 497 B
TypeScript
import { GameStatus } from "./GameStatus";
import { Livescore } from "./Livescore";
export interface Game {
status: GameStatus;
home: string;
away: string;
homeScore: number;
awayScore: number;
venue: string;
date: Date;
note?: string | null;
tickerUrl?: string | null;
externalGameId?: string | null;
externalTournamentId?: string | null;
externalTournamentKey?: string | null;
livescore?: Livescore | null;
}
//# sourceMappingURL=Game.d.ts.map