mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
* Update `TypeScript Version`s to be at least as high as dependencies' versions * Run through again
10 lines
361 B
TypeScript
10 lines
361 B
TypeScript
// Type definitions for p-series 1.0
|
|
// Project: https://github.com/sindresorhus/p-series#readme
|
|
// Definitions by: BendingBender <https://github.com/BendingBender>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
// TypeScript Version: 2.3
|
|
|
|
export = pSeries;
|
|
|
|
declare function pSeries<T>(tasks: Iterable<() => Promise<T> | T>): Promise<T[]>;
|