export type AnyFunction = (...args: any[]) => any; /** * [防抖] * @param {Function} func 执行函数 * @param {Number} wait 多少毫秒后运行一次 */ declare const debounce: (func: T, wait?: number) => T; export default debounce;