UNPKG

isy-nodejs

Version:

Node.js wrapper for ISY interface including websockets for change notifications. Fork of isy-js by Rod Toll. Designed to be used in a node.js application.

12 lines (10 loc) 283 B
import type { UnitOfMeasure } from '../ISY.js'; export interface Message<TEventInfo> { seqnum: number; sid: string; timestamp: string; control: string; action: string | number | { _: string | number; uom: UnitOfMeasure; prec: number }; node: string; eventInfo: TEventInfo; }