Skip to content

Type Alias: ChangeCallback

ChangeCallback = (value, event) => void

Defined in: interaction.ts:79

Represents a callback invoked when a form field value changes.

Parameters

value

string | boolean

The new value of the field. For checkboxes and radio buttons, this is a boolean. For all other fields, this is a string.

event

Event

The original change event.

Returns

void