Files
gridpilot.gg/core/racing/domain/services/IRankingService.ts
2025-12-15 13:46:07 +01:00

11 lines
271 B
TypeScript

import type { IDomainService } from '@gridpilot/shared/domain';
export interface DriverRanking {
driverId: string;
rating: number;
overallRank: number | null;
}
export interface IRankingService extends IDomainService {
getAllDriverRankings(): DriverRanking[];
}