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

    Interface BaseGameDetails

    Base detail type for the /summary endpoint

    interface BaseGameDetails {
        boxscore: BoxScore;
        drives?: { current?: Drive; previous: Drive[] };
        format: {
            regulation: {
                clock: number;
                displayName: string;
                periods: number;
                slug: string;
            };
        };
        gameInfo: {
            attendance: number;
            officials: {
                fullName: string;
                id: string;
                links: Link[];
                position: string;
            }[];
            venue: Venue;
        };
        leaders: Leader[];
        plays: Play[];
        standings: { record: Record; team: Team }[];
    }
    Index

    Properties

    boxscore: BoxScore

    The game's boxscore

    drives?: { current?: Drive; previous: Drive[] }
    format: {
        regulation: {
            clock: number;
            displayName: string;
            periods: number;
            slug: string;
        };
    }

    The game's format

    gameInfo: {
        attendance: number;
        officials: {
            fullName: string;
            id: string;
            links: Link[];
            position: string;
        }[];
        venue: Venue;
    }
    leaders: Leader[]
    plays: Play[]
    standings: { record: Record; team: Team }[]