DefinitelyTyped/types/it-all/index.d.ts
2019-12-18 09:52:10 -08:00

9 lines
289 B
TypeScript

// Type definitions for it-all 1.0
// Project: https://github.com/achingbrain/it-all
// Definitions by: nlisgo <https://github.com/nlisgo>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
declare function all<T>(iterable: AsyncIterable<T>): Promise<T[]>;
export = all;