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

    Interface Drive

    interface Drive {
        description: string;
        displayResult: string;
        end?: {
            clock: { displayValue: string };
            period: { number: number; type: string };
            text: string;
            yardLine: number;
        };
        id: string;
        isScore: boolean;
        offensivePlays: number;
        plays: Play[];
        result: string;
        shortDisplayResult: string;
        start: {
            clock: { displayValue: string };
            period: { number: number; type: string };
            text: string;
            yardLine: number;
        };
        team: {
            abbreviation: string;
            displayName: string;
            logos: Logo[];
            name: string;
            shortDisplayName: string;
        };
        timeElapsed: { displayValue: string };
        yards: number;
    }
    Index

    Properties

    description: string
    displayResult: string
    end?: {
        clock: { displayValue: string };
        period: { number: number; type: string };
        text: string;
        yardLine: number;
    }
    id: string
    isScore: boolean
    offensivePlays: number
    plays: Play[]
    result: string
    shortDisplayResult: string
    start: {
        clock: { displayValue: string };
        period: { number: number; type: string };
        text: string;
        yardLine: number;
    }
    team: {
        abbreviation: string;
        displayName: string;
        logos: Logo[];
        name: string;
        shortDisplayName: string;
    }
    timeElapsed: { displayValue: string }
    yards: number