We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f86b009 commit cacf131Copy full SHA for cacf131
types/helpers/helpers.extras.d.ts
@@ -14,7 +14,7 @@ export function requestAnimFrame(cb: () => void): void;
14
* @param {*} thisArg
15
* @param {function} [updateFn]
16
*/
17
-export function throttled(fn: () => void, thisArg: AnyObject, updateFn?: (AnyObject) => AnyObject): (...args: any[]) => void;
+export function throttled(fn: (...args: any[]) => void, thisArg: AnyObject, updateFn?: (AnyObject) => AnyObject): (...args: any[]) => void;
18
19
/**
20
* Debounces calling `fn` for `delay` ms
0 commit comments