Skip to content

Vizel API / vue/src / UseVizelEditorStateOptions

Interface: UseVizelEditorStateOptions<T>

Defined in: packages/vue/src/_reactivity.ts:59

Options accepted by useVizelEditorState.

Type Parameters

Type Parameter
T

Properties

equalityFn?

ts
readonly optional equalityFn?: (a, b) => boolean;

Defined in: packages/vue/src/_reactivity.ts:66

Equality predicate the composable applies to consecutive selector results. Object.is is the default; the bundled shallowEqualArray and shallowEqualObject cover the shapes selectors typically return.

Parameters

ParameterType
aT
bT

Returns

boolean

Released under the MIT License.