frontend
    Preparing search index...

    Variable golfApiConst

    golfApi: {
        exec: (
            command:
                | "reset"
                | "log"
                | "draw"
                | "hint"
                | "giveup"
                | "undo"
                | "remove",
            col?: number,
        ) => Promise<GolfResponse>;
    } = ...

    API client for the Golf Solitaire /golf/exec endpoint.

    Type Declaration

    • exec: (
          command:
              | "reset"
              | "log"
              | "draw"
              | "hint"
              | "giveup"
              | "undo"
              | "remove",
          col?: number,
      ) => Promise<GolfResponse>