UNPKG

@emigrate/cli

Version:

Emigrate is a tool for managing database migrations. It is designed to be simple yet support advanced setups, modular and extensible.

7 lines 293 B
/** * This is a simple polyfill for [Array.fromAsync()](https://github.com/tc39/proposal-array-from-async) * * It converts an async iterable to an array. */ export declare const arrayFromAsync: <T>(iterable: AsyncIterable<T>) => Promise<T[]>; //# sourceMappingURL=array-from-async.d.ts.map