import type { Effect } from "./effect.js"; /** * Recovers from all defects with provided function. * * '''WARNING''': There is no sensible way to recover from defects. This * method should be used only at the boundary between Effect and an external * system, to transmit information on a defect for diagnostic or explanatory * purposes. */ export declare function catchAllDefect_(fa: Effect, f: (_: unknown) => Effect, __trace?: string): Effect; /** * Recovers from all defects with provided function. * * '''WARNING''': There is no sensible way to recover from defects. This * method should be used only at the boundary between Effect and an external * system, to transmit information on a defect for diagnostic or explanatory * purposes. * * @ets_data_first catchAllDefect_ */ export declare function catchAllDefect(f: (_: unknown) => Effect, __trace?: string): (effect: Effect) => Effect; //# sourceMappingURL=catchAllDefect.d.ts.map