wretch
    Preparing search index...

    Type Alias OnRetryFunction

    OnRetryFunction: (
        args: {
            attempt: number;
            error?: Error;
            options: WretchOptions;
            response?: Response;
            url: string;
        },
    ) => void
    | OnRetryFunctionResponse
    | Promise<OnRetryFunctionResponse>

    Type Declaration