Files
gridpilot.gg/core/racing/domain/services/IDriverStatsService.ts
2025-12-16 11:52:26 +01:00

13 lines
318 B
TypeScript

import type { IDomainService } from '@core/shared/domain';
export interface DriverStats {
rating: number;
wins: number;
podiums: number;
totalRaces: number;
overallRank: number | null;
}
export interface IDriverStatsService extends IDomainService {
getDriverStats(driverId: string): DriverStats | null;
}