import { ExtensionObject } from "node-opcua-extension-object"; import { DTHistoryEvent } from "./dt_history_event"; import { DTHistoryEventFieldList } from "./dt_history_event_field_list"; import { DTModificationInfo } from "./dt_modification_info"; /** * | | | * |-----------|------------------------------------------------------------| * | namespace |http://opcfoundation.org/UA/ | * | nodeClass |DataType | * | name |HistoryModifiedEvent | * | isAbstract|false | */ export interface DTHistoryModifiedEvent extends DTHistoryEvent { events: DTHistoryEventFieldList[]; modificationInfos: DTModificationInfo[]; } export interface UDTHistoryModifiedEvent extends ExtensionObject, DTHistoryModifiedEvent { }