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

    Type Alias DfsPayoutTableEntry

    Reference table entry: standard payout multipliers per (app, play_type, pick_count, hits). For Power/Standard plays, only the "all hit" entry is meaningful. For Flex plays, every (pick_count, hits) row matters for grading.

    Lives in src/features/bets/dfs-payouts.ts.

    type DfsPayoutTableEntry = {
        app: DfsApp;
        hits: number;
        multiplier: number;
        pickCount: number;
        playType: DfsPlayType;
    }
    Index

    Properties

    app: DfsApp
    hits: number
    multiplier: number
    pickCount: number
    playType: DfsPlayType