import { AnyFunction } from './debounce'; /** * [节流] * @param {Function} func 执行函数 * @param {Number} wait 多少毫秒内运行一次 */ declare const throttle: (func: T, wait?: number) => T; export default throttle;