import { STM } from "@effect/core/stm/STM/definition/base"; import { TSet } from "@effect/core/stm/TSet/definition"; /** * Atomically folds using a transactional function. * @tsplus static effect/core/stm/TSet.Aspects foldSTM * @tsplus pipeable effect/core/stm/TSet foldSTM * @tsplus location "@effect/core/stm/TSet/operations/foldSTM" */ export declare function foldSTM(zero: B, op: (acc: B, a: A) => STM): (self: TSet) => STM; //# sourceMappingURL=foldSTM.d.ts.map