Framework
Version
Debouncer API Reference
Throttler API Reference
Rate Limiter API Reference
Queue API Reference

DebouncerOptions

Interface: DebouncerOptions

Defined in: debouncer.ts:4

Options for configuring a debounced function

Properties

enabled?

ts
optional enabled: boolean;
optional enabled: boolean;

Defined in: debouncer.ts:9

Whether the debouncer is enabled. When disabled, maybeExecute will not trigger any executions. Defaults to true.


leading?

ts
optional leading: boolean;
optional leading: boolean;

Defined in: debouncer.ts:14

Whether to execute on the leading edge of the timeout. Defaults to false.


trailing?

ts
optional trailing: boolean;
optional trailing: boolean;

Defined in: debouncer.ts:19

Whether to execute on the trailing edge of the timeout. Defaults to true.


wait

ts
wait: number;
wait: number;

Defined in: debouncer.ts:24

Delay in milliseconds before executing the function Defaults to 0ms

Subscribe to Bytes

Your weekly dose of JavaScript news. Delivered every Monday to over 100,000 devs, for free.

Bytes

No spam. Unsubscribe at any time.