UNPKG

@pmouli/isy-matter-server

Version:

Service to expose an ISY device as a Matter Border router

14 lines 532 B
import { CompositeDevice } from '../CompositeDevice.js'; import { DimmerLamp } from './Generated/DimmerLamp.js'; import { FanLincMotor } from './Generated/FanLincMotor.js'; export var Fan; (function (Fan) { Fan.Nodes = { light: DimmerLamp, motor: FanLincMotor }; class FanDevice extends CompositeDevice.of(Fan.Nodes, { light: 1, motor: 2 }) { static deviceDefId = 'Fan'; } Fan.Class = FanDevice; Fan.Motor = FanLincMotor; Fan.Light = DimmerLamp; })(Fan || (Fan = {})); //# sourceMappingURL=Fan.js.map