/** * ViewData for RaceListItem * This is the JSON-serializable input for the Template. */ export interface RaceListItemViewData { id: string; track: string; car: string; scheduledAt: string; status: string; leagueId: string; leagueName: string; strengthOfField: number | null; isUpcoming: boolean; isLive: boolean; isPast: boolean; }