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 {
id: string;
name: string;
}
import { Team } from "../teams/types";
export interface Match {
lid: number;
round: number;
order: number | null;
type: string;
home: any;
away?: any;
home: Team;
away?: Team;
reset?: boolean;
}