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