UNPKG

domoticz-api

Version:

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

12 lines (10 loc) 281 B
"use strict"; class Switch extends Device { constructor(_device) { super(_device); this.value = _device.value; this.switchType = _device.switchType; this.switchTypeVal = _device.switchTypeVal; } } module.exports.Switch = Switch;