import { Maybe } from "@tsplus/stdlib/data/Maybe/definition"; import { Channel } from "@effect/core/stream/Channel/definition/base"; /** * Returns a new channel, which is the same as this one, except its outputs * are filtered and transformed by the specified partial function. * @tsplus static effect/core/stream/Channel.Aspects collect * @tsplus pipeable effect/core/stream/Channel collect * @tsplus location "@effect/core/stream/Channel/operations/collect" */ export declare function collect(pf: (o: OutElem) => Maybe): (self: Channel) => Channel; //# sourceMappingURL=collect.d.ts.map