import { UAString } from "node-opcua-basic-types"; import { ExtensionObject } from "node-opcua-extension-object"; import { DTStructure } from "./dt_structure"; import { EnumConfigurationUpdate } from "./enum_configuration_update"; /** * | | | * |-----------|------------------------------------------------------------| * | namespace |http://opcfoundation.org/UA/ | * | nodeClass |DataType | * | name |ConfigurationUpdateTargetType | * | isAbstract|false | */ export interface DTConfigurationUpdateTarget extends DTStructure { path: UAString; updateType: EnumConfigurationUpdate; } export interface UDTConfigurationUpdateTarget extends ExtensionObject, DTConfigurationUpdateTarget { }