Defined in: async-debouncer.ts:4
Options for configuring an async debounced function
optional enabled: boolean;
optional enabled: boolean;
Defined in: async-debouncer.ts:9
Whether the debouncer is enabled. When disabled, maybeExecute will not trigger any executions. Defaults to true.
optional onError: (error) => void;
optional onError: (error) => void;
Defined in: async-debouncer.ts:18
Optional error handler for when the debounced function throws
unknown
void
wait: number;
wait: number;
Defined in: async-debouncer.ts:14
Delay in milliseconds to wait after the last call before executing Defaults to 0ms
Your weekly dose of JavaScript news. Delivered every Monday to over 100,000 devs, for free.