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[]; }