Options
All
  • Public
  • Public/Protected
  • All
Menu

Module clientConfig

Index

Type aliases

BrowserRequestInit

BrowserRequestInit: RequestInit

Alias for RequestInit from TypeScript's DOM lib, to more clearly differentiate it from the RequestInit provided by node-fetch.

FetchFunction

FetchFunction: (input: RequestInfo, init?: FetchOptions | undefined) => Promise<Response>

Type declaration

    • (input: RequestInfo, init?: FetchOptions | undefined): Promise<Response>
    • Parameters

      • input: RequestInfo
      • Optional init: FetchOptions | undefined

      Returns Promise<Response>

FetchOptions

FetchOptions: NodeRequestInit & BrowserRequestInit

Any properties supported in either the browser or node are accepted. Using the right properties in the right context is left to the user.

Generated using TypeDoc