From a134149f24feccc3a38e336d0b9f6b75a0738a79 Mon Sep 17 00:00:00 2001 From: kiharu3112 Date: Sat, 6 Jan 2024 02:21:27 +0900 Subject: [PATCH] =?UTF-8?q?fix:=E5=9E=8B=E5=AE=9A=E7=BE=A9=E3=81=AEtypo?= =?UTF-8?q?=E3=82=92=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/match/match.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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 = {