fetch-retry
Advanced tools
Comparing version 2.2.0 to 2.2.1
@@ -1,2 +0,1 @@ | ||
declare module 'fetch-retry' { | ||
@@ -13,3 +12,3 @@ type RequestDelayFunction = (( | ||
response: Response | null | ||
) => number); | ||
) => boolean); | ||
@@ -22,4 +21,4 @@ interface IRequestInitWithRetry extends RequestInit { | ||
function fetch(url: RequestInit, options: IRequestInitWithRetry): Promise<Response>; | ||
function fetch(url: String, options?: IRequestInitWithRetry): Promise<Response>; | ||
export = fetch; | ||
} |
{ | ||
"name": "fetch-retry", | ||
"version": "2.2.0", | ||
"version": "2.2.1", | ||
"description": "Adds retry functionality to the Fetch API", | ||
@@ -5,0 +5,0 @@ "repository": "https://github.com/jonbern/fetch-retry.git", |
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
34849