play walkout songs
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
import { z } from "zod";
|
||||
import { TeamInfo } from "../teams/types";
|
||||
import { TeamInfo, Team } from "../teams/types";
|
||||
import { TournamentInfo } from "../tournaments/types";
|
||||
|
||||
export type MatchStatus = "tbd" | "ready" | "started" | "ended";
|
||||
@@ -23,8 +23,8 @@ export interface Match {
|
||||
is_losers_bracket: boolean;
|
||||
status: MatchStatus;
|
||||
tournament: TournamentInfo;
|
||||
home?: TeamInfo;
|
||||
away?: TeamInfo;
|
||||
home?: TeamInfo | Team;
|
||||
away?: TeamInfo | Team;
|
||||
created: string;
|
||||
updated: string;
|
||||
home_seed?: number;
|
||||
|
||||
Reference in New Issue
Block a user