frontend
    Preparing search index...

    Props for BlackJack action phase control buttons.

    interface BjActionPhaseControlsProps {
        hintEnabled: boolean;
        loading: boolean;
        onDoubleDown: () => void;
        onHit: () => void;
        onSplit: () => void;
        onStand: () => void;
        onSurrender: () => void;
        showDoubleDown: boolean;
        showSplit: boolean;
        showSurrender: boolean;
        suggestedAction: number;
    }
    Index

    Properties

    hintEnabled: boolean
    loading: boolean
    onDoubleDown: () => void
    onHit: () => void
    onSplit: () => void
    onStand: () => void
    onSurrender: () => void
    showDoubleDown: boolean
    showSplit: boolean
    showSurrender: boolean
    suggestedAction: number