Files
gridpilot.gg/apps/website/lib/view-data/DriverViewData.ts
2026-01-23 15:30:23 +01:00

15 lines
280 B
TypeScript

/**
* ViewData for Driver
* This is the JSON-serializable input for the Template.
*/
export interface DriverViewData {
id: string;
name: string;
avatarUrl: string | null;
iracingId?: string;
rating?: number;
country?: string;
bio?: string;
joinedAt?: string;
}