brasileirao
Version:
<p align="center"> <a href="https://github.com/godrix/brasileirao/actions"> <img src="https://img.shields.io/github/actions/workflow/status/godrix/brasileirao/publish.yml"/> </a> <a href="https://github.com/godrix/brasileirao"> <img src="htt
21 lines (19 loc) • 419 B
text/typescript
export interface TableData {
position: number,
team: string,
popularName: string;
acronym: string;
points: number,
played: number,
shield: string,
wins: number,
draws: number,
losses: number,
goalsFor: number,
goalsAgainst: number,
goalDifference: number,
winPercentage: number,
recentResults?: ('W' | 'D' | 'L')[],
positionChange?: number,
}
export type LeagueTable = 'a' | 'b' | 'c';