Skip to content
This repository has been archived by the owner on Aug 7, 2024. It is now read-only.

fix:型定義のtypoを修正 #23

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/match/match.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 = {
Expand All @@ -48,8 +48,8 @@ export type MatchResult = {
};
// 予選の結果
export type MatchResultPair = {
Left: MatchResult;
Right: MatchResult;
left: MatchResult;
right: MatchResult;
};
// 本選の結果
export type MatchResultFinalPair = {
Expand Down
Loading