@effect-ts/system
Version:
Effect-TS is a zero dependency set of libraries to write highly productive, purely functional TypeScript at scale.
8 lines • 404 B
TypeScript
import type * as C from "../core.js";
/**
* Merges a variable list of streams in a non-deterministic fashion.
* Up to `n` streams may be consumed in parallel and up to
* `outputBuffer` chunks may be buffered by this operator.
*/
export declare function mergeAll(n: number, outputBuffer?: number): <R, E, O>(...streams: C.Stream<R, E, O>[]) => C.Stream<R, E, O>;
//# sourceMappingURL=mergeAll.d.ts.map