Represents a private interface for a Checkbox field.

interface ICheckboxFieldPrivate<Data = IAnything> {
    onChange: (v: any, config?: { skipReadonly?: boolean }) => void;
    value: any;
}

Type Parameters

  • Data = IAnything

    The type of data associated with the Checkbox field.

Hierarchy (View Summary)

Properties

Properties

onChange: (v: any, config?: { skipReadonly?: boolean }) => void
value: any