export default function throttle(fn, interval = 1000, options = { leading: true, trailing:…
/** * 防止重覆点击 * @param timer callBack * @returns 自执行函数 */ declare global { interface Window…