mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
12 lines
421 B
TypeScript
12 lines
421 B
TypeScript
// Type definitions for promise-sequential 1.1
|
|
// Project: https://github.com/russiann/promise-sequential#readme
|
|
// Definitions by: Gary King <https://github.com/garyking>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
// TypeScript Version: 3.2
|
|
|
|
type PromiseFunction = () => Promise<any>;
|
|
|
|
declare function promiseSequential(promises: PromiseFunction[]): Promise<any[]>;
|
|
|
|
export = promiseSequential;
|