添加交锋往绩接口

This commit is contained in:
xianyi
2026-01-15 15:08:45 +08:00
parent cff077c5f7
commit 8513f10a10
3 changed files with 85 additions and 0 deletions

View File

@@ -401,3 +401,31 @@ export interface SearchResult {
players: SearchPlayer[];
teams: SearchTeam[];
}
// H2H 历史对战比赛项
export interface H2HMatch {
awayTeamKey: string;
countryName: string;
eventAwayTeam: string;
eventCountryKey: string;
eventDate: string;
eventFinalResult: string;
eventHalftimeResult: string;
eventHomeTeam: string;
eventKey: string;
eventLive: string;
eventStatus: string;
eventTime: string;
homeTeamKey: string;
leagueKey: string;
leagueName: string;
leagueRound: string;
leagueSeason: string;
}
// H2H 历史对战数据
export interface H2HData {
H2H: H2HMatch[];
firstTeamResults: H2HMatch[];
secondTeamResults: H2HMatch[];
}