import { EventType } from './EventType.js'; export class ISYEvent { action: TAction; eventInfo: any; constructor(eventData: any) { this.action = eventData.action; this.eventInfo = eventData.eventInfo; } }