import type { Effect } from "./effect.js"; /** * Returns an effect that effectfully "peeks" at the failure or success of * this effect. * * @ets_data_first tapBoth_ */ export declare function tapBoth(f: (e: E) => Effect, g: (a: A) => Effect, __trace?: string): (self: Effect) => Effect; /** * Returns an effect that effectfully "peeks" at the failure or success of * this effect. */ export declare function tapBoth_(self: Effect, f: (e: E) => Effect, g: (a: A) => Effect, __trace?: string): Effect; //# sourceMappingURL=tapBoth.d.ts.map