UNPKG

meng-utils

Version:

一个js工具函数库,将平时常用的方法封装成通用库

12 lines (11 loc) 208 B
/** * 函数节流 * * @param cb - 目标函数 * @param wait - 等待时常 * @returns */ export declare function throttle( cb: Function, wait: number, ): (this: any, e: Event) => void;