UNPKG

nanoleaf-client

Version:
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;