UNPKG

node-red-contrib-superpower-smart-test

Version:

Node-RED integration with eWeLink Cube

15 lines (14 loc) 394 B
import { ECategory } from "../enum/ECategory"; import { ICapability } from "./IDevice"; export interface IThirdpartyDevice { third_serial_number: string; name: string; display_category: ECategory; capabilities: ICapability[]; state: any; manufacturer: string; model: string; tags?: any; firmware_version: string; service_address: string; }