@types/async
Advanced tools
Comparing version 2.0.48 to 2.0.49
@@ -171,4 +171,4 @@ // Type definitions for Async 2.0.1 | ||
export function seq(...fns: Function[]): Function; | ||
export function applyEach(fns: Function[], argsAndCallback: any[]): void; // applyEach(fns, args..., callback). TS does not support ... for a middle argument. Callback is optional. | ||
export function applyEachSeries(fns: Function[], argsAndCallback: any[]): void; // applyEachSeries(fns, args..., callback). TS does not support ... for a middle argument. Callback is optional. | ||
export function applyEach(fns: Function[], ...argsAndCallback: any[]): void; // applyEach(fns, args..., callback). TS does not support ... for a middle argument. Callback is optional. | ||
export function applyEachSeries(fns: Function[], ...argsAndCallback: any[]): void; // applyEachSeries(fns, args..., callback). TS does not support ... for a middle argument. Callback is optional. | ||
export function queue<T, E>(worker: AsyncWorker<T, E>, concurrency?: number): AsyncQueue<T>; | ||
@@ -175,0 +175,0 @@ export function queue<T, R, E>(worker: AsyncResultIterator<T, R, E>, concurrency?: number): AsyncQueue<T>; |
{ | ||
"name": "@types/async", | ||
"version": "2.0.48", | ||
"version": "2.0.49", | ||
"description": "TypeScript definitions for Async", | ||
@@ -40,4 +40,4 @@ "license": "MIT", | ||
"dependencies": {}, | ||
"typesPublisherContentHash": "713ae1be7f97eb246ad8d635c00fc1eb3461792ae86496c406e6bddf0f296087", | ||
"typesPublisherContentHash": "b570e4742e0584f0e1f60c34c1814504dd1fe2cb1bb4ca5ad83312fbd531344b", | ||
"typeScriptVersion": "2.1" | ||
} |
@@ -11,3 +11,3 @@ # Installation | ||
Additional Details | ||
* Last updated: Thu, 15 Mar 2018 23:17:55 GMT | ||
* Last updated: Mon, 09 Apr 2018 19:12:27 GMT | ||
* Dependencies: none | ||
@@ -14,0 +14,0 @@ * Global values: async |
Sorry, the diff of this file is not supported yet
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
17883