effect-io-ai

Package: effect
Module: Pull

Pull.Success

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

Signature

type Success<P> = P extends Effect<infer _A, infer _E, infer _R> ? _A : never

Source

Since v4.0.0