8 lines
234 B
TypeScript
Raw Normal View History

2025-04-23 09:34:08 +08:00
import { CallbackFunction } from './types';
export declare const errorObj: {
e: {};
};
declare function tryCatcher(err: Error, val?: any): any;
export declare function tryCatch(fn: CallbackFunction): typeof tryCatcher;
export {};