Represents the options that may be passed to an Http Handler.

interface HttpHandlerOptions {
    abortSignal?: AbortSignal;
    requestTimeout?: number;
}

Properties

abortSignal?: AbortSignal
requestTimeout?: number

The maximum time in milliseconds that the connection phase of a request may take before the connection attempt is abandoned.