Lib: Correct schema (removed some "expand" fields)

This commit is contained in:
2025-01-29 00:29:51 +01:00
parent 9925a9b3c4
commit 5bf47b9523

View File

@ -76,9 +76,6 @@ export interface RacePick {
pxx?: string; pxx?: string;
dnf?: string; dnf?: string;
expand: { expand: {
dnf: Driver;
pxx: Driver;
race: Race;
user: User; user: User;
}; };
} }
@ -88,11 +85,6 @@ export interface RaceResult {
race: string; race: string;
pxxs: string[]; pxxs: string[];
dnfs: string[]; dnfs: string[];
expand: {
dnfs: Driver[];
pxxs: Driver[];
race: Race;
};
} }
export interface CurrentPickedUser { export interface CurrentPickedUser {