18 lines
267 B
TypeScript
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[];
|
|
} |