frontend
    Preparing search index...
    • Parse a BlackJack CLI command into API exec arguments.

      Parameters

      • input: string

      Returns CliParseResult<
          [
              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,
          ],
      >