Expand description
interface FetchOptions {
headers?: Record<string, string>;
retryBaseMs?: number;
retryCount?: number;
signal?: AbortSignal;
stallTimeoutMs?: number;
timeoutMs?: number;
}Properties§
§§§§§§
readonly headers?: Record<string, string>Custom HTTP headers for fetch requests.
readonly retry Base Ms?: numberBase delay for exponential backoff in ms.
readonly retry Count?: numberRetries after initial attempt.
readonly signal?: AbortSignalAbortSignal for cooperative cancellation.
readonly stall Timeout Ms?: numberStall timeout: abort if no data for this long.
readonly timeout Ms?: numberPer-request timeout in ms.
Options controlling HTTP fetch behavior (timeouts, retries, cancellation).