UNPKG

lazzy.ts

Version:

Fast and lightweight library for lazy operations with iterable objects.

3 lines 235 B
export declare function generate<T>(callback: () => T): Generator<T, void, undefined>; export declare function generateAsync<T>(callback: () => T | Promise<T>): AsyncGenerator<T, void, undefined>; //# sourceMappingURL=generate.d.ts.map