Skip to main content Link Search Menu Expand Document (external link)

Authentication overview

Added in v0.0.1


Table of contents


interceptor

Basic

Signature

export declare const Basic: (
  username: string,
  password: string
) => (chain: Chain) => Promise<Either<HttpError | InterceptorError, Response>>

Added in v0.0.1

BearerToken

Signature

export declare const BearerToken: (
  token: string
) => (chain: Chain) => Promise<Either<HttpError | InterceptorError, Response>>

Added in v0.0.1