import { Predicate } from "@tsplus/stdlib/data/Predicate"; import { Sink } from "@effect/core/stream/Sink/definition/base"; import { Channel } from "@effect/core/stream/Channel/definition/base"; import { Chunk } from "@tsplus/stdlib/collections/Chunk/definition"; /** * A sink that folds its inputs with the provided function, termination * predicate and initial state. * @tsplus static effect/core/stream/Sink.Ops fold * @tsplus location "@effect/core/stream/Sink/operations/fold" */ export declare function fold(z: S, cont: Predicate, f: (s: S, input: In) => S): Sink; //# sourceMappingURL=fold.d.ts.map