frontend
    Preparing search index...

    Variable spiderApiConst

    spiderApi: {
        exec: (
            command:
                | "reset"
                | "log"
                | "hint"
                | "move"
                | "giveup"
                | "autocomplete"
                | "undo"
                | "deal",
            from?: SpiderMoveZone,
            to?: SpiderMoveZone,
            config?: SpiderConfigInput,
        ) => Promise<SpiderResponse>;
    } = ...

    API client for the Spider /spider/exec endpoint.

    Type Declaration

    • exec: (
          command:
              | "reset"
              | "log"
              | "hint"
              | "move"
              | "giveup"
              | "autocomplete"
              | "undo"
              | "deal",
          from?: SpiderMoveZone,
          to?: SpiderMoveZone,
          config?: SpiderConfigInput,
      ) => Promise<SpiderResponse>