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

    Interface Competition

    interface Competition {
        attendance: number;
        broadcasts: { market: string; names: string[] }[];
        competitors: Competitor[];
        conferenceCompetition?: boolean;
        date: string;
        format: any;
        geoBroadcasts: {
            lang: string;
            market: { id: string; type: string };
            media: { shortName: string };
            region: string;
            type: { id: string; shortName: string };
        }[];
        headlines: { description: string; shortLinkText: string; type: string }[];
        id: string;
        neutralSite: boolean;
        notes: { headline: string; type: string }[];
        playByPlayAvailable: boolean;
        recent: boolean;
        series: Series;
        startDate: string;
        status: Status;
        timeValid: boolean;
        type: { abbreviation: string; id: string };
        uid: string;
        venue: Venue;
        wasSuspended?: boolean;
    }
    Index

    Properties

    attendance: number
    broadcasts: { market: string; names: string[] }[]
    competitors: Competitor[]
    conferenceCompetition?: boolean
    date: string
    format: any
    geoBroadcasts: {
        lang: string;
        market: { id: string; type: string };
        media: { shortName: string };
        region: string;
        type: { id: string; shortName: string };
    }[]
    headlines: { description: string; shortLinkText: string; type: string }[]
    id: string
    neutralSite: boolean
    notes: { headline: string; type: string }[]
    playByPlayAvailable: boolean
    recent: boolean
    series: Series
    startDate: string
    status: Status
    timeValid: boolean
    type: { abbreviation: string; id: string }
    uid: string
    venue: Venue
    wasSuspended?: boolean