Skip to content

Latest commit

 

History

History
72 lines (40 loc) · 2.03 KB

UserInfoRequestOptions.md

File metadata and controls

72 lines (40 loc) · 2.03 KB

Interface: UserInfoRequestOptions

💗 Help the project

Table of contents

Properties

Properties

DPoP

Optional DPoP: DPoPOptions

DPoP-related options.


[customFetch]

Optional [customFetch]: (input: RequestInfo | URL, init?: RequestInit) => Promise<Response>

See customFetch.


[useMtlsAlias]

Optional [useMtlsAlias]: boolean

See useMtlsAlias.


headers

Optional headers: Record<string, string> | [string, string][] | Headers

Headers to additionally send with the HTTP Request(s) triggered by this function's invocation.


signal

Optional signal: AbortSignal | () => AbortSignal

An AbortSignal instance, or a factory returning one, to abort the HTTP Request(s) triggered by this function's invocation.

Example

A 5000ms timeout AbortSignal for every request

const signal = () => AbortSignal.timeout(5_000) // Note: AbortSignal.timeout may not yet be available in all runtimes.

Hierarchy