softonic / axios-retry

Axios plugin that intercepts failed requests and retries them whenever possible
Other
1.9k stars 167 forks source link

export types for all functions #133

Closed balassit closed 4 years ago

balassit commented 4 years ago

The following will now be available for import

import axiosRetry, {
  IAxiosRetryConfig,
  exponentialDelay,
  isIdempotentRequestError,
  isNetworkError, 
  isNetworkOrIdempotentRequestError,
  isRetryableError,
  isSafeRequestError
} from 'axios-retry';