UNPKG

@thi.ng/transducers-async

Version:

Async versions of various highly composable transducers, reducers and iterators

5 lines 267 B
import type { MaybeAsyncIterable } from "@thi.ng/api"; import type { AsyncReducer } from "./api.js"; export declare function push<T>(): AsyncReducer<T, T[]>; export declare function push<T>(src: MaybeAsyncIterable<T>): Promise<T[]>; //# sourceMappingURL=push.d.ts.map