Skip to content

Latest commit

 

History

History
81 lines (46 loc) · 2.74 KB

RevocationRequestOptions.md

File metadata and controls

81 lines (46 loc) · 2.74 KB

Interface: RevocationRequestOptions

💗 Help the project

Table of contents

Properties

Properties

[customFetch]

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

See customFetch.


[useMtlsAlias]

Optional [useMtlsAlias]: boolean

See useMtlsAlias.


additionalParameters

Optional additionalParameters: Record<string, string> | URLSearchParams | string[][]

Any additional parameters to send. This cannot override existing parameter values.


clientPrivateKey

Optional clientPrivateKey: CryptoKey | PrivateKey

Private key to use for private_key_jwt client authentication. Its algorithm must be compatible with a supported JWS alg Algorithm.


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