18 lines
364 B
TypeScript
18 lines
364 B
TypeScript
/**
|
|
* ViewData for StandingEntry
|
|
* This is the JSON-serializable input for the Template.
|
|
*/
|
|
export interface StandingEntryViewData {
|
|
driverId: string;
|
|
position: number;
|
|
points: number;
|
|
wins: number;
|
|
podiums: number;
|
|
races: number;
|
|
leaderPoints: number;
|
|
nextPoints: number;
|
|
currentUserId: string;
|
|
previousPosition?: number;
|
|
driver?: any;
|
|
}
|