interface Leaderboard {
    active: boolean;
    id: string;
    naturalorder: number;
    shadowedBy: any[];
    shadows: any[];
    stats: LeaderboardStats;
    username: string;
    wins: number;
}

Hierarchy (view full)

Properties

active: boolean
id: string
naturalorder: number
shadowedBy: any[]
shadows: any[]
username: string
wins: number