@types/async
Advanced tools
Comparing version 3.0.0 to 3.0.1
@@ -10,2 +10,3 @@ // Type definitions for Async 3.0 | ||
// Etienne Rossignon <https://github.com/erossignon> | ||
// Lifeng Zhu <https://github.com/Juliiii> | ||
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped | ||
@@ -64,3 +65,3 @@ // TypeScript Version: 2.3 | ||
saturated(): Promise<void>; | ||
saturated(handler: () => void): void ; | ||
saturated(handler: () => void): void; | ||
empty(): Promise<void>; | ||
@@ -76,3 +77,6 @@ empty(handler: () => void): void; | ||
workersList<TWorker extends DataContainer<T>, CallbackContainer>(): TWorker[]; | ||
error(error: Error, data: any): void; | ||
error(): Promise<void>; | ||
error(handler: (error: Error, task: T) => void): void; | ||
unsaturated(): void; | ||
@@ -79,0 +83,0 @@ buffer: number; |
{ | ||
"name": "@types/async", | ||
"version": "3.0.0", | ||
"version": "3.0.1", | ||
"description": "TypeScript definitions for Async", | ||
@@ -41,2 +41,7 @@ "license": "MIT", | ||
"githubUsername": "erossignon" | ||
}, | ||
{ | ||
"name": "Lifeng Zhu", | ||
"url": "https://github.com/Juliiii", | ||
"githubUsername": "Juliiii" | ||
} | ||
@@ -53,4 +58,4 @@ ], | ||
"dependencies": {}, | ||
"typesPublisherContentHash": "2defb7915fcbafe1a29082dd6c99b256361a043878c3ffc21ed7c8ed1354ae70", | ||
"typesPublisherContentHash": "06d965a22a4f98aaf3ac6dcb9c26dcc6dbc979dc9f65314202d400067985945c", | ||
"typeScriptVersion": "2.3" | ||
} |
@@ -5,3 +5,3 @@ # Installation | ||
# Summary | ||
This package contains type definitions for Async ( https://github.com/caolan/async ). | ||
This package contains type definitions for Async (https://github.com/caolan/async). | ||
@@ -12,3 +12,3 @@ # Details | ||
Additional Details | ||
* Last updated: Tue, 04 Jun 2019 20:54:43 GMT | ||
* Last updated: Mon, 22 Jul 2019 20:03:16 GMT | ||
* Dependencies: none | ||
@@ -18,2 +18,2 @@ * Global values: async | ||
# Credits | ||
These definitions were written by Boris Yankov <https://github.com/borisyankov>, Arseniy Maximov <https://github.com/kern0>, Joe Herman <https://github.com/Penryn>, Angus Fenying <https://github.com/fenying>, Pascal Martin <https://github.com/pascalmartin>, Dmitri Trofimov <https://github.com/Dmitri1337>, Etienne Rossignon <https://github.com/erossignon>. | ||
These definitions were written by Boris Yankov <https://github.com/borisyankov>, Arseniy Maximov <https://github.com/kern0>, Joe Herman <https://github.com/Penryn>, Angus Fenying <https://github.com/fenying>, Pascal Martin <https://github.com/pascalmartin>, Dmitri Trofimov <https://github.com/Dmitri1337>, Etienne Rossignon <https://github.com/erossignon>, and Lifeng Zhu <https://github.com/Juliiii>. |
19585
227