Package: effect
Module: Stream
Creates a stream produced from a function which receives a Scope and
returns an Effect. The resulting stream will emit a single element, which
will be the result of the returned effect, if successful.
Signature
declare const unwrapScopedWith: <A, E2, R2, E, R>(f: (scope: Scope.Scope) => Effect.Effect<Stream<A, E2, R2>, E, R>) => Stream<A, E | E2, R | R2>
Since v3.11.0