This commit is contained in:
yohlo
2025-08-27 11:09:15 -05:00
parent b7de2e7af3
commit 8eea99b125

View File

@@ -1,15 +1,12 @@
export interface Team { import { Team } from "../teams/types";
id: string;
name: string;
}
export interface Match { export interface Match {
lid: number; lid: number;
round: number; round: number;
order: number | null; order: number | null;
type: string; type: string;
home: any; home: Team;
away?: any; away?: Team;
reset?: boolean; reset?: boolean;
} }