UNPKG

iking-utils-test

Version:

金合前端工具库(1.2.9版本之后需要注册KEY)

11 lines (9 loc) 240 B
export declare function throttle<T>(fn: (args?: T) => void, interval: number): (args: T) => void; /** 示例 * let test = throttle((text: string) => { console.log(text); }, 500); test('A'); test('B'); */