@thi.ng/transducers-async
Version:
Async versions of various highly composable transducers, reducers and iterators
5 lines • 336 B
TypeScript
import type { MaybeAsyncIterable } from "@thi.ng/api";
import type { AsyncTransducer } from "./api.js";
export declare function throttleTime<T>(delay: number): AsyncTransducer<T, T>;
export declare function throttleTime<T>(delay: number, src: MaybeAsyncIterable<T>): AsyncIterableIterator<T>;
//# sourceMappingURL=throttle-time.d.ts.map