frontend
    Preparing search index...

    Interface BlackJackHand

    A single BlackJack hand with score, cards, and status flags.

    interface BlackJackHand {
        bet: number;
        busted: boolean;
        canSplit: boolean;
        canSurrender: boolean;
        cards: Card[];
        doubled: boolean;
        isBlackJack: boolean;
        score: number;
        stood: boolean;
        surrendered: boolean;
    }
    Index

    Properties

    bet: number
    busted: boolean
    canSplit: boolean
    canSurrender: boolean
    cards: Card[]
    doubled: boolean
    isBlackJack: boolean
    score: number
    stood: boolean
    surrendered: boolean