UNPKG

nanoleaf-client

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