UNPKG

iking-utils

Version:

金合前端工具库

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'); */