Represents a private interface for a radio field.

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

Type Parameters

  • Data = IAnything

    the type of data the radio field manages

Hierarchy (View Summary)

Properties

Properties

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