@buzzr/dfs-engine
    Preparing search index...

    Type Alias LegLiveSnapshot

    Live in-game snapshot. Written by bet-dfs-live-watcher on each tick where the polled actual value differs from the stored one. NULL while the leg is pre-game, after the leg is graded, or after a manual DNP.

    Read by the bet detail screen to render "currently 14 PTS" next to a pending leg's line. The canonical value is leg.actualValue — this struct only carries the freshness metadata (timestamp + source).

    type LegLiveSnapshot = {
        actualValue: number;
        lastLiveStatAt: string;
        source: "espn-summary" | "espn-boxscore";
    }
    Index

    Properties

    actualValue: number

    Mirror of leg.actualValue at the moment of the last live poll.

    lastLiveStatAt: string

    ISO timestamp of the most recent poll where actualValue changed.

    source: "espn-summary" | "espn-boxscore"

    Where the live value was sourced from.