ky
Version:
Tiny and elegant HTTP client based on the Fetch API
13 lines (12 loc) • 452 B
TypeScript
import type { ForceRetryOptions } from '../core/constants.js';
/**
Internal error used to signal a forced retry from afterResponse hooks.
This is thrown when a user returns ky.retry() from an afterResponse hook.
*/
export declare class ForceRetryError extends Error {
name: "ForceRetryError";
customDelay: number | undefined;
code: string | undefined;
customRequest: Request | undefined;
constructor(options?: ForceRetryOptions);
}