Skip to content

Commit

Permalink
chore: interface -> type 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
seongminn committed Nov 22, 2023
1 parent 453524c commit 325208e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/types/game.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,20 +11,20 @@ export type GameType = {
secondTeam: GameTeamType;
};

export interface GameDetailType {
export type GameDetailType = {
gameTeams: GameTeamType[];
startTime: string;
videoId: number;
gameQuarter: GameQuarterType;
gameName: string;
}
};

export interface GameTeamType {
export type GameTeamType = {
gameTeamId: number;
gameTeamName: string;
logoImageUrl: string;
score: number;
}
};

export type GameRecordType = {
id: number;
Expand Down

0 comments on commit 325208e

Please sign in to comment.