axios-retry
Advanced tools
Comparing version 3.1.1 to 3.1.2
@@ -43,1 +43,8 @@ import * as axios from 'axios' | ||
export default axiosRetry | ||
export function isNetworkError(error: Error): boolean; | ||
export function isRetryableError(error: Error): boolean; | ||
export function isSafeRequestError(error: Error): boolean; | ||
export function isIdempotentRequestError(error: Error): boolean; | ||
export function isNetworkOrIdempotentRequestError(error: Error): boolean; | ||
export function exponentialDelay(retryNumber: number): number; |
{ | ||
"name": "axios-retry", | ||
"version": "3.1.1", | ||
"version": "3.1.2", | ||
"author": "Rubén Norte <ruben.norte@softonic.com>", | ||
@@ -5,0 +5,0 @@ "description": "Axios plugin that intercepts failed requests and retries them whenever posible.", |
# axios-retry | ||
[![Build Status](https://travis-ci.org/softonic/axios-retry.svg?branch=master)](https://travis-ci.org/softonic/axios-retry) | ||
Axios plugin that intercepts failed requests and retries them whenever possible. | ||
@@ -4,0 +6,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
34388
463
85