UNPKG

@hardbulls/wbsc-crawler

Version:

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

14 lines 345 B
import { StandingType } from "./StandingType"; export interface Standing { results: Array<{ position: number; team: string; wins: number; loses: number; ties: number; winsPercentage: number; gamesBehind?: number; }>; type: StandingType; } //# sourceMappingURL=Standing.d.ts.map