14 lines
308 B
TypeScript
14 lines
308 B
TypeScript
export interface LeagueScheduleViewData {
|
|
leagueId: string;
|
|
races: Array<{
|
|
id: string;
|
|
name: string;
|
|
scheduledAt: string; // ISO string
|
|
track?: string;
|
|
car?: string;
|
|
sessionType?: string;
|
|
isPast: boolean;
|
|
isUpcoming: boolean;
|
|
status: 'scheduled' | 'completed';
|
|
}>;
|
|
} |