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