import { ExtensionObject } from "node-opcua-extension-object"; import { DTStructure } from "./dt_structure"; import { DTHistoryEventFieldList } from "./dt_history_event_field_list"; /** * | | | * |-----------|------------------------------------------------------------| * | namespace |http://opcfoundation.org/UA/ | * | nodeClass |DataType | * | name |HistoryEvent | * | isAbstract|false | */ export interface DTHistoryEvent extends DTStructure { events: DTHistoryEventFieldList[]; } export interface UDTHistoryEvent extends ExtensionObject, DTHistoryEvent { }