15 lines
280 B
TypeScript
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;
|
|
}
|