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