/** * 函数节流 * * @param {Function} func 回调函数 * @param {Number} time 每隔多长时间执行一次 * @return {Function} */ declare const throttle: (func: any, time: number) => any; export default throttle;