frontend
    Preparing search index...

    Variable blackjackApiConst

    blackjackApi: {
        exec: (
            command:
                | "split"
                | "reset"
                | "hit"
                | "stand"
                | "bet"
                | "doubledown"
                | "insurance"
                | "declineinsurance"
                | "surrender"
                | "togglehint"
                | "setdeckcount"
                | "togglesoft17"
                | "togglecounting"
                | "toggledas"
                | "setcountingsystem"
                | "setpenetration"
                | "setcpucount"
                | "earlysurrender"
                | "declineearlysurrender"
                | "setsurrenderrule",
            amount?: number,
            config?: BlackJackConfigInput,
            betOptions?: BlackJackBetOptions,
        ) => Promise<BlackJackResponse>;
    } = ...

    API client for the BlackJack /blackjack/exec endpoint.

    Type Declaration

    • exec: (
          command:
              | "split"
              | "reset"
              | "hit"
              | "stand"
              | "bet"
              | "doubledown"
              | "insurance"
              | "declineinsurance"
              | "surrender"
              | "togglehint"
              | "setdeckcount"
              | "togglesoft17"
              | "togglecounting"
              | "toggledas"
              | "setcountingsystem"
              | "setpenetration"
              | "setcpucount"
              | "earlysurrender"
              | "declineearlysurrender"
              | "setsurrenderrule",
          amount?: number,
          config?: BlackJackConfigInput,
          betOptions?: BlackJackBetOptions,
      ) => Promise<BlackJackResponse>