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 b0c8d82 commit 7491435Copy full SHA for 7491435
packages/core/src/utils/debounce.ts
@@ -5,8 +5,9 @@ type DebouncedCallback = {
5
};
6
type CallbackFunction = () => unknown;
7
type DebounceOptions = {
8
+ /** The max. time in ms to wait for the callback to be invoked. */
9
maxWait?: number;
- // This can be overwritten to use a different setTimeout implementation, e.g. to avoid triggering change detection in Angular
10
+ /** This can be overwritten to use a different setTimeout implementation, e.g. to avoid triggering change detection in Angular */
11
setTimeoutImpl?: typeof setTimeout;
12
13
0 commit comments