UNPKG

@gentrace/core

Version:
9 lines (8 loc) 190 B
export default throttle; /** * Throttle decorator * @param {Function} fn * @param {Number} freq * @return {Function} */ declare function throttle(fn: Function, freq: number): Function;