Hyperlinkv0.8.0-beta.28

Pull

Pull.Servicestypeeffect/Pull.ts:114
Services<P>

Extracts the service requirements (context) type from a Pull type.

When to use

Use to derive the context requirements of a generic or inferred Pull without restating its R type parameter.

type extractorsSuccessErrorLeftover
Source effect/Pull.ts:1141 lines
export type Services<P> = P extends Effect<infer _A, infer _E, infer _R> ? _R : never