Package: effect
Module: Pull
Extracts the success type from a Pull type.
When to use
Use to derive the value produced by an existing Pull when declaring
reusable type aliases, low-level stream helpers, or function signatures.
See
Error for extracting the ordinary failure typeLeftover for extracting the completion leftover typeServices for extracting the required services type insteadSignature
type Success<P> = P extends Effect<infer _A, infer _E, infer _R> ? _A : never
Since v4.0.0