Lib: Add RacePickPoints and RacePickPointsAcc to schema

This commit is contained in:
2025-03-23 17:15:59 +01:00
parent 25e50fd64b
commit f249205cd8

View File

@ -127,3 +127,21 @@ export interface SeasonPickedUser {
admin: boolean;
picked: string | null;
}
// Points Data
export interface RacePickPoints {
id: string;
user: string;
step: number;
pxx_points: number;
dnf_points: number;
}
export interface RacePickPointsAcc {
id: string;
user: string;
total_pxx_points: number;
total_dnf_points: number;
total_points: number;
}