UNPKG

@pmouli/isy-matter-server

Version:

Service to expose an ISY device as a Matter Border router

10 lines (9 loc) 253 B
import { EventType } from './EventType.js'; export class ISYEvent<TAction, TEventType extends EventType> { action: TAction; eventInfo: any; constructor (eventData: any) { this.action = eventData.action; this.eventInfo = eventData.eventInfo; } }