16 lines
263 B
TypeScript
16 lines
263 B
TypeScript
export interface PlayerStats {
|
|
[key: string]: string;
|
|
}
|
|
|
|
export interface PlayerTotals {
|
|
name: string;
|
|
team: string;
|
|
totals: Array<PlayerStats>;
|
|
}
|
|
|
|
export interface TotalPlayers {
|
|
players: Array<PlayerTotals>;
|
|
legend: PlayerStats;
|
|
total_players: number;
|
|
}
|