UNPKG

dirigera

Version:

A TypeScript client for IKEA's DIRIGERA smart home hub

22 lines (19 loc) 481 B
import type { CommonDeviceAttributes, Device, IdentifiableDeviceAttributes, JoinableDeviceAttributes, OtaUpdatableDeviceAttributes, } from './Device.ts' export interface RepeaterAttributes extends CommonDeviceAttributes, IdentifiableDeviceAttributes, JoinableDeviceAttributes, OtaUpdatableDeviceAttributes {} export interface Repeater extends Device { type: 'repeater' deviceType: 'repeater' attributes: RepeaterAttributes isHidden: boolean }