my-kaiqiuwang/src/types.ts
2026-01-24 11:12:14 +09:00

18 lines
267 B
TypeScript

export interface IEventInfo {
title: string;
info: string[];
url: string;
matchId: string;
}
export interface Player {
name: string;
score: number;
avatar: string;
info: string;
}
export interface MatchInfo {
itemId: string;
players: Player[];
}