Type Alias: FetchRetryOptions
FetchRetryOptions =
Omit<Partial<RetryOptions>,"retry"|"retryIf"> &object
Defined in: packages/fetch/src/types.ts:359
Fetch retry options
Type Declaration
retry?
optionalretry:number
Maximum number of retries.
The total number of attempts will be retry + 1.
Default: 0
retryIf?
optionalretryIf:RetryIfFunc<Response>