This interface is implemented by HID range object. It specifies the range of a parameter (by specifying minimum and maximum values).
interface IHIDRange {
// Properties
${min}: number;
${max}: number;
}
// This interface is not available in managed environment
// This interface is not available in native environment
min: number;
// This property is not available in managed environment
// This property is not available in native environment
Specifies the minimum value of a parameter.
max: number;
// This property is not available in managed environment
// This property is not available in native environment
Specifies the maximum value of a parameter.