1 | export declare type Top = Array<string>;
|
2 | export interface Player {
|
3 | name: string;
|
4 | rank: string;
|
5 | timePlayed: string;
|
6 | games: Array<Game>;
|
7 | }
|
8 | interface Stat {
|
9 | Points: string;
|
10 | Wins: string;
|
11 | Played: string;
|
12 | Deaths?: string;
|
13 | Eggs?: string;
|
14 | Blocks?: string;
|
15 | Kills?: string;
|
16 | FireWorks?: string;
|
17 | Crates?: string;
|
18 | DMs?: string;
|
19 | Sponges?: string;
|
20 | Beds?: string;
|
21 | Rounds?: string;
|
22 | Goals?: string;
|
23 | }
|
24 | interface Game {
|
25 | game: string;
|
26 | stats: Stat;
|
27 | }
|
28 | export {};
|