UNPKG

jc-public-fun

Version:

前端开发常用公共函数

4 lines (3 loc) 268 B
declare function debounce<T extends (...args: any[]) => any>(fn: T, delay: number): (...args: Parameters<T>) => void; declare function throttle<T extends (...args: any[]) => any>(func: T, wait: number): (...args: Parameters<T>) => void; export { debounce, throttle };