@types/async
Advanced tools
Comparing version 3.2.3 to 3.2.4
@@ -210,4 +210,4 @@ // Type definitions for Async 3.2 | ||
export function parallelLimit<T, R, E = Error>(tasks: Array<AsyncFunction<T, E>> | Dictionary<AsyncFunction<T, E>>, limit: number): Promise<R>; | ||
export function whilst<E = Error>(test: () => boolean, fn: AsyncVoidFunction<E>, callback: ErrorCallback<E>): void; | ||
export function whilst<R, E = Error>(test: () => boolean, fn: AsyncVoidFunction<E>): Promise<R>; | ||
export function whilst<E = Error>(test: (cb: (err: any, truth: boolean) => boolean) => boolean, fn: AsyncVoidFunction<E>, callback: ErrorCallback<E>): void; | ||
export function whilst<R, E = Error>(test: (cb: (err: any, truth: boolean) => boolean) => boolean, fn: AsyncVoidFunction<E>): Promise<R>; | ||
export function doWhilst<T, E = Error>(fn: AsyncFunctionEx<T, E>, test: (...results: T[]) => boolean, callback: ErrorCallback<E>): void; | ||
@@ -214,0 +214,0 @@ export function doWhilst<T, R, E = Error>(fn: AsyncFunctionEx<T, E>, test: (...results: T[]) => boolean): Promise<R>; |
{ | ||
"name": "@types/async", | ||
"version": "3.2.3", | ||
"version": "3.2.4", | ||
"description": "TypeScript definitions for Async", | ||
@@ -62,4 +62,4 @@ "license": "MIT", | ||
"dependencies": {}, | ||
"typesPublisherContentHash": "81e047871626508bdf9169741b829f659624ec62fcdfa6ddb9deb317ca2a143c", | ||
"typeScriptVersion": "3.0" | ||
"typesPublisherContentHash": "a39b1e6d179968610731335032c5b4c80b79666a75a9d9257ba1032cf3699eb1", | ||
"typeScriptVersion": "3.2" | ||
} |
@@ -11,3 +11,3 @@ # Installation | ||
### Additional Details | ||
* Last updated: Fri, 15 May 2020 04:08:47 GMT | ||
* Last updated: Thu, 12 Nov 2020 20:50:55 GMT | ||
* Dependencies: none | ||
@@ -14,0 +14,0 @@ * Global values: `async` |
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
22824