mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-02-24 17:52:45 +00:00
9 lines
289 B
TypeScript
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;
|