Lib: Add CurrentPickedUser to schema

This commit is contained in:
2025-01-27 23:47:43 +01:00
parent 31be7bceae
commit 9d38a03e57

View File

@ -94,3 +94,13 @@ export interface RaceResult {
race: Race; race: Race;
}; };
} }
export interface CurrentPickedUser {
id: string;
username: string;
firstname: string;
avatar: string;
avatar_url?: string;
admin: boolean;
picked: boolean;
}