interface Player {
    _id: string;
    anon: boolean;
    badges: Badge[];
    bot: boolean;
    bracket: Bracket;
    country: null | string;
    record: {
        games: number;
        streak: number;
        wins: number;
    };
    role: string;
    supporter: boolean;
    username: string;
    verified: boolean;
    xp: number;
}

Properties

_id: string
anon: boolean
badges: Badge[]
bot: boolean
bracket: Bracket
country: null | string
record: {
    games: number;
    streak: number;
    wins: number;
}
role: string
supporter: boolean
username: string
verified: boolean
xp: number