fix issues in adapters

This commit is contained in:
2025-12-22 22:46:15 +01:00
parent 41b27402dc
commit 1efd971032
25 changed files with 144 additions and 103 deletions

View File

@@ -0,0 +1 @@
export * from './ports/ILeagueStandingsRepository';

View File

@@ -0,0 +1,13 @@
export interface RawStanding {
driverId: string;
position: number;
points: number;
races: number;
wins: number;
poles: number;
podiums: number;
}
export interface ILeagueStandingsRepository {
getLeagueStandings(leagueId: string): Promise<RawStanding[]>;
}