UNPKG

matterbridge-shelly

Version:
17 lines (16 loc) 314 B
export class ShellyProperty { component; key; _value; constructor(component, key, value) { this.key = key; this._value = value; this.component = component; } get value() { return this._value; } set value(value) { this._value = value; } }