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;
}