11 lines
271 B
TypeScript
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[];
|
|
} |