Lib: Implement starting grid scraper

This commit is contained in:
2025-06-07 20:34:02 +02:00
parent 3ca967591e
commit f5d8f56330
3 changed files with 70 additions and 1 deletions

View File

@ -159,6 +159,14 @@ export interface RacePickPointsTotal {
// Scraped Data
export interface ScrapedStartingGrid {
id: string;
race_step: number; // This maps to races
driver_code: string; // This maps to drivers
position: number;
time: string;
}
export interface ScrapedRaceResult {
id: string;
race_step: number; // This maps to races