import { UInt32 } from "node-opcua-basic-types"; import { ExtensionObject } from "node-opcua-extension-object"; import { DTStructure } from "./dt_structure"; import { DTKeyValuePair } from "./dt_key_value_pair"; /** * | | | * |-----------|------------------------------------------------------------| * | namespace |http://opcfoundation.org/UA/ | * | nodeClass |DataType | * | name |BaseConfigurationDataType | * | isAbstract|true | */ export interface DTBaseConfiguration extends DTStructure { configurationVersion: UInt32; configurationProperties: DTKeyValuePair[]; } export interface UDTBaseConfiguration extends ExtensionObject, DTBaseConfiguration { }