Interface UseBindingSyncOptions

interface UseBindingSyncOptions {
    deps?: DependencyList;
    id?: string;
    limitMode?: LimitMode;
    limitMSec?: number;
    limitType?: LimitType;
    priority?: number;
    queue?: RunQueue;
}

Hierarchy (View Summary)

Properties

deps?: DependencyList

On a rerender, deps changes are treated like bindings changes. That is, if they change between renders, the input change detection logic is run (using the areInputValuesEqual, detectInputChanges, and makeComparableInputValue values) using the limiter (see LimiterOptions).

id?: string

A technical but human-readable ID

limitMode?: LimitMode

The limiter mode

'trailing'

limitMSec?: number

The duration to debounce/throttle for

0

limitType?: LimitType

The type of limiter

'debounce'

priority?: number

The priority

DEFAULT_PRIORITY (0)

queue?: RunQueue

The queue

result of useDefaultQueue()