Add local data navigation UI

This commit is contained in:
2026-05-25 02:31:35 -04:00
parent 1661f8dec3
commit 2c9db0213c
11 changed files with 758 additions and 98 deletions

View File

@@ -155,3 +155,17 @@ export interface Lap {
lap_duration: number | null
is_pit_out_lap: boolean
}
export interface WeekendSession {
session: Session
source: 'local' | 'partial' | 'none'
datasets: Record<string, DatasetInfo>
}
export interface Weekend {
source: 'local' | 'partial' | 'none'
meeting_key: number
meeting: Meeting
sessions: WeekendSession[]
default_session_key?: number
}