Represents a private interface for a slider field component.

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

Type Parameters

  • Data = IAnything

    The type of data associated with the slider field. ISliderFieldPrivate

Hierarchy (View Summary)

Properties

Properties

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