UNPKG

domoticz-api

Version:

Advanced api based on your current Domoticz api with well formated results ;)

14 lines (11 loc) 243 B
"use strict"; class Variable { constructor(name, value) { this.name = name; this.value = value; } toString() { return `${this.name} ${this.value}`; } } module.exports.Variable = Variable;