@types/async
Advanced tools
Comparing version 3.0.7 to 3.0.8
@@ -159,5 +159,7 @@ // Type definitions for Async 3.0 | ||
export const mapValuesSeries: typeof mapValues; | ||
export function filter<T, E = Error>(arr: IterableCollection<T>, iterator: AsyncBooleanIterator<T, E>, callback?: AsyncResultArrayCallback<T, E>): void; | ||
export function filter<T, E = Error>(arr: IterableCollection<T>, iterator: AsyncBooleanIterator<T, E>, callback: AsyncResultArrayCallback<T, E>): void; | ||
export function filter<T, E = Error>(arr: IterableCollection<T>, iterator: AsyncBooleanIterator<T, E>): Promise<T[]>; | ||
export const filterSeries: typeof filter; | ||
export function filterLimit<T, E = Error>(arr: IterableCollection<T>, limit: number, iterator: AsyncBooleanIterator<T, E>, callback?: AsyncResultArrayCallback<T, E>): void; | ||
export function filterLimit<T, E = Error>(arr: IterableCollection<T>, limit: number, iterator: AsyncBooleanIterator<T, E>, callback: AsyncResultArrayCallback<T, E>): void; | ||
export function filterLimit<T, E = Error>(arr: IterableCollection<T>, limit: number, iterator: AsyncBooleanIterator<T, E>): Promise<T[]>; | ||
export const select: typeof filter; | ||
@@ -164,0 +166,0 @@ export const selectSeries: typeof filter; |
{ | ||
"name": "@types/async", | ||
"version": "3.0.7", | ||
"version": "3.0.8", | ||
"description": "TypeScript definitions for Async", | ||
@@ -57,4 +57,4 @@ "license": "MIT", | ||
"dependencies": {}, | ||
"typesPublisherContentHash": "e386977967a3729e86c3819ac1de35586c290b9eb8fda4831e1458c47c33a6b8", | ||
"typesPublisherContentHash": "4097fc7562e1a4a9b905bb4578629dc8139cfd4f3bc1868db98b659a4fa87757", | ||
"typeScriptVersion": "2.8" | ||
} |
@@ -11,3 +11,3 @@ # Installation | ||
### Additional Details | ||
* Last updated: Tue, 28 Jan 2020 00:33:06 GMT | ||
* Last updated: Tue, 18 Feb 2020 19:36:58 GMT | ||
* Dependencies: none | ||
@@ -17,2 +17,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), and Lifeng Zhu (https://github.com/Juliiii). | ||
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). |
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
21762
260