@mikelaferriere/espn-api
    Preparing search index...

    Interface BoxScore

    interface BoxScore {
        players: {
            statistics: {
                athletes: { athlete: Athlete };
                descriptions: string[];
                keys: string[];
                labels: string[];
                name: string;
            };
            team: Team;
        }[];
        teams: { statistics: Statistic[]; team: Team }[];
    }
    Index

    Properties

    Properties

    players: {
        statistics: {
            athletes: { athlete: Athlete };
            descriptions: string[];
            keys: string[];
            labels: string[];
            name: string;
        };
        team: Team;
    }[]
    teams: { statistics: Statistic[]; team: Team }[]