8 lines
150 B
TypeScript
8 lines
150 B
TypeScript
export type StandingDTO = {
|
|
leagueId: string;
|
|
driverId: string;
|
|
points: number;
|
|
wins: number;
|
|
position: number;
|
|
racesCompleted: number;
|
|
}; |