UNPKG

244 BTypeScriptView Raw
1declare namespace _debounce {
2 const debounce: typeof _debounce;
3}
4
5declare function _debounce<A extends Function>(
6 f: A,
7 interval?: number,
8 immediate?: boolean,
9): A & { clear(): void } & { flush(): void };
10
11export = _debounce;