/** * 防抖函数 */ export declare function debounce unknown>(func: T, wait: number): (...args: Parameters) => void; /** * 节流函数 */ export declare function throttle unknown>(func: T, limit: number): (...args: Parameters) => void; /** * 深拷贝对象 */ export declare function deepClone(obj: T): T; /** * 格式化错误信息 */ export declare function formatError(error: unknown): string; //# sourceMappingURL=helpers.d.ts.map