Represents a private interface for a Yes/No field

interface IYesNoFieldPrivate<Data = IAnything> {
    dirty: boolean;
    incorrect: null | string;
    invalid: null | string;
    onChange: (v: any, config?: { skipReadonly?: boolean }) => void;
    readonly: boolean;
    value: any;
}

Type Parameters

  • Data = IAnything

    The data type associated with the field

Hierarchy (View Summary)

Properties

dirty: boolean
incorrect: null | string
invalid: null | string
onChange: (v: any, config?: { skipReadonly?: boolean }) => void
readonly: boolean
value: any