/** * Error Wrapper Utilities * * Provides higher-order function wrappers for adding error handling * to existing functions without modifying their implementation. */ /** * Wraps function with error logging * @param fn - Function to wrap * @param context - Context for error logging * @returns Wrapped function with error logging */ export declare function wrapWithErrorLogging any>(fn: T, context: string): T; /** * Wraps function with safe execution (returns null on error) * @param fn - Function to wrap * @param context - Optional context for error logging * @returns Wrapped function with safe execution */ export declare function wrapWithSafeExecute any>(fn: T, context?: string): T; //# sourceMappingURL=errorWrappers.d.ts.map