UNPKG

node-intellicenter

Version:

NodeJS library for communicating with a Pentair IntelliCenter controller

16 lines (15 loc) 355 B
import { ICParam } from "./param.js"; export declare class ICResponseObj { objnam: string; params?: ICParam; } export declare class ICResponse { command: string; messageID: string; response: string; objectList?: ICResponseObj[]; queryName?: string; answer?: ICResponseObj[]; timeSince?: string; timeNow?: string; }