Interface representing a private rating field.

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

Type Parameters

  • Data = IAnything

    The type of data associated with the field.

Hierarchy (View Summary)

Properties

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