Type Alias OnRetryFunction

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