UNPKG

nanoleaf-client-multi

Version:

Client library for Nanoleaf smart home devices

14 lines (13 loc) 239 B
/** * @property {number} value * @property {number} min * @property {number} max */ class Brightness { constructor(obj) { this.value = obj.value; this.min = obj.min; this.max = obj.max; } } export default Brightness;