Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

NormalizedOptions

Normalized options passed to the fetch call and the beforeRequest hooks.

interface NormalizedOptions extends RequestInit {
credentials?: NonNullable<RequestInit["credentials"]>;
method: NonNullable<RequestInit["method"]>;
onDownloadProgress: Options["onDownloadProgress"];
prefixUrl: string;
retry: RetryOptions;
}

§Extends

§
RequestInit
[src]

§Properties

§
credentials?: NonNullable<RequestInit["credentials"]>
[src]
§
method: NonNullable<RequestInit["method"]>
[src]
§
onDownloadProgress: Options["onDownloadProgress"]
[src]
§
prefixUrl: string
[src]