import { Collection } from "@tsplus/stdlib/collections/Collection/definition"; import { STM } from "@effect/core/stm/STM/definition/base"; /** * Merges an `Collection>` to a single `STM`, working * sequentially. * @tsplus static effect/core/stm/STM.Ops mergeAll * @tsplus location "@effect/core/stm/STM/operations/mergeAll" */ export declare function mergeAll(as: Collection>, zero: B, f: (b: B, a: A) => B): STM; //# sourceMappingURL=mergeAll.d.ts.map