frontend
    Preparing search index...

    Variable pyramidApiConst

    pyramidApi: {
        exec: (
            command:
                | "reset"
                | "log"
                | "draw"
                | "hint"
                | "giveup"
                | "undo"
                | "remove",
            card1?: PyramidRemoveCard,
            card2?: PyramidRemoveCard,
        ) => Promise<PyramidResponse>;
    } = ...

    API client for the Pyramid /pyramid/exec endpoint.

    Type Declaration

    • exec: (
          command:
              | "reset"
              | "log"
              | "draw"
              | "hint"
              | "giveup"
              | "undo"
              | "remove",
          card1?: PyramidRemoveCard,
          card2?: PyramidRemoveCard,
      ) => Promise<PyramidResponse>