frontend
    Preparing search index...

    Variable freecellApiConst

    freecellApi: {
        exec: (
            command:
                | "reset"
                | "log"
                | "hint"
                | "move"
                | "giveup"
                | "autocomplete"
                | "undo",
            from?: FreeCellMoveZone,
            to?: FreeCellMoveZone,
        ) => Promise<FreeCellResponse>;
    } = ...

    API client for the FreeCell /freecell/exec endpoint.

    Type Declaration

    • exec: (
          command:
              | "reset"
              | "log"
              | "hint"
              | "move"
              | "giveup"
              | "autocomplete"
              | "undo",
          from?: FreeCellMoveZone,
          to?: FreeCellMoveZone,
      ) => Promise<FreeCellResponse>