Defined in: async-debouncer.ts:8
• TFn extends AnyAsyncFunction
canLeadingExecute: boolean;
canLeadingExecute: boolean;
Defined in: async-debouncer.ts:12
Whether the debouncer can execute on the leading edge of the timeout
errorCount: number;
errorCount: number;
Defined in: async-debouncer.ts:16
Number of function executions that have resulted in errors
isExecuting: boolean;
isExecuting: boolean;
Defined in: async-debouncer.ts:20
Whether the debounced function is currently executing asynchronously
isPending: boolean;
isPending: boolean;
Defined in: async-debouncer.ts:24
Whether the debouncer is waiting for the timeout to trigger execution
lastArgs: undefined | Parameters<TFn>;
lastArgs: undefined | Parameters<TFn>;
Defined in: async-debouncer.ts:28
The arguments from the most recent call to maybeExecute
lastResult: undefined | ReturnType<TFn>;
lastResult: undefined | ReturnType<TFn>;
Defined in: async-debouncer.ts:32
The result from the most recent successful function execution
maybeExecuteCount: number;
maybeExecuteCount: number;
Defined in: async-debouncer.ts:36
Number of times maybeExecute has been called (for reduction calculations)
settleCount: number;
settleCount: number;
Defined in: async-debouncer.ts:40
Number of function executions that have completed (either successfully or with errors)
status: "disabled" | "idle" | "pending" | "executing" | "settled";
status: "disabled" | "idle" | "pending" | "executing" | "settled";
Defined in: async-debouncer.ts:44
Current execution status - 'idle' when not active, 'pending' when waiting, 'executing' when running, 'settled' when completed
successCount: number;
successCount: number;
Defined in: async-debouncer.ts:48
Number of function executions that have completed successfully