UNPKG

nanoleaf-client-multi

Version:

Client library for Nanoleaf smart home devices

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