@pmouli/isy-matter-server
Version:
Service to expose an ISY device as a Matter Border router
10 lines (9 loc) • 312 B
text/typescript
import { ISYEvent } from './ISYEvent.js';
import { EventType } from './EventType.js';
export class NodeEvent<TActionType, TEventType extends EventType> extends ISYEvent<TActionType, TEventType> {
nodeAddress: string;
constructor (eventData: any) {
super(eventData);
this.nodeAddress = eventData.node;
}
}