/** * @fn : 要执行的函数 * @delay : 执行函数的时间间隔 */ export default function debounce(fn: Function, delay: number): (this: any, ...args: any) => void;