frontend
    Preparing search index...

    Variable ginrummyApiConst

    ginrummyApi: {
        exec: (
            command:
                | "reset"
                | "log"
                | "discard"
                | "nextround"
                | "drawstock"
                | "drawdiscard"
                | "knock"
                | "layoff",
            cardIndex?: number,
            config?: GinRummyConfigInput,
            cardIndices?: number[],
        ) => Promise<GinRummyResponse>;
    } = ...

    API client for the Gin Rummy /ginrummy/exec endpoint.

    Type Declaration

    • exec: (
          command:
              | "reset"
              | "log"
              | "discard"
              | "nextround"
              | "drawstock"
              | "drawdiscard"
              | "knock"
              | "layoff",
          cardIndex?: number,
          config?: GinRummyConfigInput,
          cardIndices?: number[],
      ) => Promise<GinRummyResponse>