DebounceTimer
Type Alias
Represents the wait condition for item debouncing. Can be a number of milliseconds or a function that returns a Promise.
API
type DebounceTimer<T> = | number | ((value: T, lastValue: ResourceSnapshot<T>) => Promise<void> | void)
Jump to details