export declare type TOP = Array; export interface Player { rank: string; timePlayed: string; games: Array; } export interface Game { game: string; stats: Stat; } export interface Stat { Points: string; Wins: string; Played: string; Eggs?: string; Blocks?: string; Kills?: string; FireWorks?: string; Crates?: string; DMs?: string; Sponges?: string; Beds?: string; Rounds?: string; Goals?: string; }