import { Chunk } from "@tsplus/stdlib/collections/Chunk/definition"; import { Stream } from "@effect/core/stream/Stream/definition"; import { Effect } from "@effect/core/io/Effect/definition"; import { Maybe } from "@tsplus/stdlib/data/Maybe/definition"; import { Exit } from "@effect/core/io/Exit/definition"; /** * Zips this stream with another point-wise. The provided functions will be * used to create elements for the composed stream. * * The functions `left` and `right` will be used if the streams have different * lengths and one of the streams has ended before the other. * @tsplus static effect/core/stream/Stream.Aspects zipAllWith * @tsplus pipeable effect/core/stream/Stream zipAllWith * @tsplus location "@effect/core/stream/Stream/operations/zipAllWith" */ export declare function zipAllWith(that: Stream, left: (a: A) => A3, right: (a2: A2) => A3, both: (a: A, a2: A2) => A3): (self: import("../definition").Stream) => import("../definition").Stream; //# sourceMappingURL=zipAllWith.d.ts.map