/** * * @param fn 回调函数 * @param wait 延迟时间 * @returns */ declare function debounce(fn: (...args: any[]) => void, wait?: number): (this: any, ...args: any[]) => void; export default debounce;