UNPKG

homebridge-texecom-connect

Version:

A Homebridge plugin to integrate with Texecom Connect SmartCom.

10 lines (9 loc) 288 B
import { PlatformConfig } from "homebridge"; import { ConfigArea } from "./config-area"; import { ConfigZone } from "./config-zone"; export interface Config extends PlatformConfig { areas: readonly ConfigArea[]; host: string; port: number; zones: readonly ConfigZone[]; }