import type { Either } from "../Either/index.js"; import type { Effect } from "./effect.js"; /** * Returns an effect that effectfully "peeks" at the result of this effect as an `Either`. */ export declare function tapEither_(self: Effect, f: (exit: Either) => Effect, __trace?: string): Effect; /** * Returns an effect that effectfully "peeks" at the result of this effect as an `Either`. * * @ets_data_first tapEither_ */ export declare function tapEither(f: (exit: Either) => Effect, __trace?: string): (self: Effect) => Effect; //# sourceMappingURL=tapEither.d.ts.map