UNPKG

ramda-generators

Version:

A collection of lazily evaluated generators and functions to work with generators in Javascript and Typescript, following the style of Ramda's functions

3 lines (2 loc) 219 B
export declare const debounce: <T>(gen: Generator<T, void, unknown>) => Generator<T, void, unknown>; export declare const debounceAsync: <T>(gen: AsyncGenerator<T, void, unknown>) => AsyncGenerator<T, void, unknown>;