fix data flow issues

This commit is contained in:
2025-12-19 21:58:03 +01:00
parent 94fc538f44
commit ec177a75ce
37 changed files with 1336 additions and 534 deletions

View File

@@ -0,0 +1,4 @@
export interface DriverRatingProvider {
getRating(driverId: string): number | null;
getRatings(driverIds: string[]): Map<string, number>;
}