板球直播详情基本信息

This commit is contained in:
yuchenglong
2026-01-23 17:55:50 +08:00
parent b1a8797567
commit 31d1b16c4a
13 changed files with 549 additions and 30 deletions

View File

@@ -76,6 +76,19 @@ export interface LiveScoreMatch {
event_second_player?: string;
event_second_player_logo?: string;
event_serve?: string;
// Cricket specific
comments?: {
Live?: {
balls: string;
ended: string;
innings: string;
overs: string;
post: string;
runs: string;
}[];
};
scorecard?: any;
wickets?: any;
scores?:
| any[]
| {
@@ -439,6 +452,18 @@ export interface MatchDetailData {
home_team?: Player[];
away_team?: Player[];
};
comments?: {
Live?: {
balls: string;
ended: string;
innings: string;
overs: string;
post: string;
runs: string;
}[];
};
scorecard?: any;
wickets?: any;
};
}