UNPKG

dt-common-device

Version:

A secure and robust device management library for IoT applications

18 lines (17 loc) 403 B
import { IConnection } from "../../../connection"; export declare enum DeviceType { HUB = "HUB", LOCK = "LOCK", ELEVATOR_LOCK = "ELEVATOR LOCK", THERMOSTAT = "THERMOSTAT", TV = "TV" } export interface IRawDevice { deviceId?: string; deviceType: DeviceType; name?: string; connection: IConnection; propertyId: string; zoneId: string; [key: string]: any; }