Lib: Add RaceResult to schema

This commit is contained in:
2025-01-26 13:53:34 +01:00
parent 2a124b7201
commit 9ef669c11a

View File

@ -82,3 +82,15 @@ export interface RacePick {
user: User;
};
}
export interface RaceResult {
id: string;
race: string;
pxxs: string[];
dnfs: string[];
expand: {
dnfs: Driver[];
pxxs: Driver[];
race: Race;
};
}