IAuthServerClient

IAuthServerClient interface defines the contract for the `AuthServerClient` class, outlining the methods related to authentication.

interface IAuthServerClient {
  getChallenge: (params: ChallengeParams) => Promise<string>;
  distributeShares: (
    params: DistributeSharesParams
  ) => Promise<GeneralResponseData>;
  retrieveShares: (
    params: GeneralParams
  ) => Promise<RetrieveSharesResponseData>;
  deleteShares: (
    params: GeneralParams
  ) => Promise<GeneralResponseData>;
}

Associated Types

KeyTypesAuthServerClientTypesAuthServerClient

Last updated