import { UAString } 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 |BaseConfigurationRecordDataType | * | isAbstract|true | */ export interface DTBaseConfigurationRecord extends DTStructure { name: UAString; recordProperties: DTKeyValuePair[]; } export interface UDTBaseConfigurationRecord extends ExtensionObject, DTBaseConfigurationRecord { }