Hyperlinkv0.8.0-beta.28

Pull

Pull.Successtypeeffect/Pull.ts:59
Success<P>

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.

type extractorsErrorLeftoverServices
Source effect/Pull.ts:591 lines
export type Success<P> = P extends Effect<infer _A, infer _E, infer _R> ? _A : never