import { Effect } from "@effect/core/io/Effect/definition"; import { Maybe } from "@tsplus/stdlib/data/Maybe/definition"; import { Stream } from "@effect/core/stream/Stream/definition"; /** * Returns the resulting stream when the given partial function is defined * for the given effectful value, otherwise returns an empty stream. * @tsplus static effect/core/stream/Stream.Ops whenCaseEffect * @tsplus location "@effect/core/stream/Stream/operations/whenCaseEffect" */ export declare function whenCaseEffect(a: Effect, pf: (a: A) => Maybe>): Stream; //# sourceMappingURL=whenCaseEffect.d.ts.map