UNPKG

@hardbulls/wbsc-crawler

Version:

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

22 lines 537 B
import { GameStatus } from "./GameStatus"; import { LivePlay } from "./LivePlay"; export interface Livescore { gameId: string; tournamentId: string; inning: number | null; inningHalf: "top" | "bottom" | null; homeRuns: number; awayRuns: number; balls: number; strikes: number; outs: number; runner1: boolean; runner2: boolean; runner3: boolean; pitcher: string; batter: string; status: GameStatus; start: Date; play?: LivePlay; } //# sourceMappingURL=Livescore.d.ts.map