UNPKG

521 BTypeScriptView Raw
1export declare type Top = Array<string>;
2export interface Player {
3 name: string;
4 rank: string;
5 timePlayed: string;
6 games: Array<Game>;
7}
8interface 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}
24interface Game {
25 game: string;
26 stats: Stat;
27}
28export {};