frontend
    Preparing search index...

    Variable euchreApiConst

    euchreApi: {
        exec: (
            command:
                | "reset"
                | "play"
                | "discard"
                | "pass"
                | "next"
                | "nextround"
                | "hint"
                | "orderup"
                | "calltrump",
            cardIndex?: number,
            suit?: number,
            goAlone?: boolean,
            config?: EuchreConfigInput,
        ) => Promise<EuchreResponse>;
    } = ...

    API client for the Euchre /euchre/exec endpoint.

    Type Declaration

    • exec: (
          command:
              | "reset"
              | "play"
              | "discard"
              | "pass"
              | "next"
              | "nextround"
              | "hint"
              | "orderup"
              | "calltrump",
          cardIndex?: number,
          suit?: number,
          goAlone?: boolean,
          config?: EuchreConfigInput,
      ) => Promise<EuchreResponse>