diff --git a/src/match/match.ts b/src/match/match.ts index 54b1af3..655a6cf 100644 --- a/src/match/match.ts +++ b/src/match/match.ts @@ -34,8 +34,8 @@ import { Entry } from "../entry/entry.js"; */ // 対戦するチームのペア L左/R右 export type MatchTeams = { - Left: Entry | undefined; - Right: Entry | undefined; + left: Entry | undefined; + right: Entry | undefined; }; // 試合の結果(1チーム,1回のみ) export type MatchResult = { @@ -48,8 +48,8 @@ export type MatchResult = { }; // 予選の結果 export type MatchResultPair = { - Left: MatchResult; - Right: MatchResult; + left: MatchResult; + right: MatchResult; }; // 本選の結果 export type MatchResultFinalPair = {