18 lines
371 B
TypeScript
18 lines
371 B
TypeScript
import { ViewData } from '@/lib/contracts/view-data/ViewData';
|
|
|
|
|
|
export interface DriverRankingItem extends ViewData {
|
|
id: string;
|
|
name: string;
|
|
rating: number;
|
|
skillLevel: string;
|
|
nationality: string;
|
|
racesCompleted: number;
|
|
wins: number;
|
|
podiums: number;
|
|
rank: number;
|
|
avatarUrl: string;
|
|
winRate: string;
|
|
medalBg: string;
|
|
medalColor: string;
|
|
} |