Docs
CodeRabbit
Cloudflare
AG Grid
Netlify
Neon
WorkOS
Clerk
Convex
Electric
PowerSync
Sentry
Railway
Prisma
Strapi
Unkey
CodeRabbit
Cloudflare
AG Grid
Netlify
Neon
WorkOS
Clerk
Convex
Electric
PowerSync
Sentry
Railway
Prisma
Strapi
Unkey
Debouncer API Reference
Throttler API Reference
Rate Limiter API Reference
Queue API Reference
Batcher API Reference
Debouncer API Reference

ReactDebouncerOptions

Interface: ReactDebouncerOptions<TFn, TSelected>

Defined in: react-pacer/src/debouncer/useDebouncer.ts:13

Extends

  • DebouncerOptions<TFn>

Type Parameters

TFn

TFn extends AnyFunction

TSelected

TSelected = { }

Properties

onUnmount()?

ts
optional onUnmount: (debouncer) => void;

Defined in: react-pacer/src/debouncer/useDebouncer.ts:21

Optional callback invoked when the component unmounts. Receives the debouncer instance. When provided, replaces the default cleanup (cancel); use it to call flush(), reset(), cancel(), add logging, etc.

Parameters

debouncer

ReactDebouncer<TFn, TSelected>

Returns

void