seed data

This commit is contained in:
2025-12-30 18:33:15 +01:00
parent 83371ea839
commit 92226800df
306 changed files with 1753 additions and 501 deletions

View File

@@ -14,6 +14,7 @@ export interface TeamStats {
totalWins: number;
totalRaces: number;
rating: number;
category?: string;
}
export interface ITeamStatsRepository {
@@ -22,11 +23,6 @@ export interface ITeamStatsRepository {
*/
getTeamStats(teamId: string): Promise<TeamStats | null>;
/**
* Get stats for a specific team (synchronous)
*/
getTeamStatsSync(teamId: string): TeamStats | null;
/**
* Save stats for a specific team
*/
@@ -41,4 +37,4 @@ export interface ITeamStatsRepository {
* Clear all stats
*/
clear(): Promise<void>;
}
}