import { Effect } from "@effect/core/io/Effect/definition"; import { Collection } from "@tsplus/stdlib/collections/Collection/definition"; import { Chunk } from "@tsplus/stdlib/collections/Chunk/definition"; /** * Returns an effect that executes both this effect and the specified effect, * in parallel. Combines both Cause` when both effects fail. * @tsplus static effect/core/io/Effect.Aspects validatePar * @tsplus pipeable effect/core/io/Effect validatePar * @tsplus location "@effect/core/io/Effect/operations/validatePar" */ export declare function validateParNow(that: Effect): (self: import("../definition").Effect) => import("../definition").Effect; /** * Feeds elements of type `A` to `f `and accumulates, in parallel, all errors * in error channel or successes in success channel. * * This combinator is lossy meaning that if there are errors all successes * will be lost. To retain all information please use [[partitionPar]]. * @tsplus static effect/core/io/Effect.Ops validatePar * @tsplus location "@effect/core/io/Effect/operations/validatePar" */ export declare function validatePar(as: Collection, f: (a: A) => Effect): Effect, Chunk>; //# sourceMappingURL=validatePar.d.ts.map