fbsim-core JavaScript & TypeScript API - v1.0.0-beta.2
    Preparing search index...

    Interface Drive

    An enriched drive with computed values and display strings.

    Includes enriched Play entries, total yards, and the drive's display output.

    interface Drive {
        complete: boolean;
        display: string;
        plays: Play[];
        result: DriveResult;
        total_yards: number;
    }
    Index

    Properties

    complete: boolean
    display: string
    plays: Play[]
    result: DriveResult
    total_yards: number