types
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user