import { Fiber } from "@effect/core/io/Fiber/definition"; /** * Zips this fiber with the specified fiber, combining their results using the * specified combiner function. Both joins and interruptions are performed in * sequential order from left to right. * @tsplus static effect/core/io/Fiber.Aspects zipWith * @tsplus static effect/core/io/RuntimeFiber.Aspects zipWith * @tsplus pipeable effect/core/io/Fiber zipWith * @tsplus pipeable effect/core/io/RuntimeFiber zipWith * @tsplus location "@effect/core/io/Fiber/operations/zipWith" */ export declare function zipWith(that: Fiber, f: (a: A, b: B) => C): (self: import("@effect/core/io/Fiber/definition").Fiber) => import("@effect/core/io/Fiber/definition").Fiber; //# sourceMappingURL=zipWith.d.ts.map