mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-05-30 10:35:22 +08:00
9 lines
334 B
TypeScript
9 lines
334 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
|
|
|
|
export = pSeries;
|
|
|
|
declare function pSeries<T>(tasks: Iterable<() => Promise<T> | T>): Promise<T[]>;
|