UNPKG

@effect-ts/system

Version:

Effect-TS is a zero dependency set of libraries to write highly productive, purely functional TypeScript at scale.

13 lines 980 B
import type * as T from "../../../Effect/index.js"; import type * as C from "./core.js"; /** * Effectfully transforms both inputs and result of this sink using the provided functions. */ export declare function dimapEffect_<R, R1, R2, InErr, InErr1 extends InErr, In, In1, OutErr, OutErr1, L, Z, Z1>(self: C.Sink<R, InErr, In, OutErr, L, Z>, f: (in_: In1) => T.Effect<R1, InErr1, In>, g: (z: Z) => T.Effect<R2, OutErr1, Z1>): C.Sink<R1 & R & R2, InErr & InErr1, In1, OutErr | OutErr1, L, Z1>; /** * Effectfully transforms both inputs and result of this sink using the provided functions. * * @ets_data_first dimapEffect_ */ export declare function dimapEffect<R1, R2, InErr, InErr1 extends InErr, In, In1, OutErr1, Z, Z1>(f: (in_: In1) => T.Effect<R1, InErr1, In>, g: (z: Z) => T.Effect<R2, OutErr1, Z1>): <R, OutErr, L>(self: C.Sink<R, InErr, In, OutErr, L, Z>) => C.Sink<R1 & R & R2, InErr & InErr1, In1, OutErr1 | OutErr, L, Z1>; //# sourceMappingURL=dimapEffect.d.ts.map