import { Effect } from "@effect/core/io/Effect/definition"; import { Take } from "@effect/core/stream/Take/definition"; /** * Creates an effect from `Effect` that does not fail, but succeeds * with the `Take`. Any error returned from the stream when pulling is * converted to `Take.halt`. Creates a singleton chunk. * @tsplus static effect/core/stream/Take.Ops fromEffect * @tsplus location "@effect/core/stream/Take/operations/fromEffect" */ export declare function fromEffect(effect: Effect): Effect>; //# sourceMappingURL=fromEffect.d.ts.map