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