import { UAProperty } from "node-opcua-address-space-base"; import { DataType } from "node-opcua-variant"; import { UAString } from "node-opcua-basic-types"; import { UABaseDataVariable, UABaseDataVariable_Base } from "./ua_base_data_variable"; /** * | | | * |----------------|------------------------------------------------------------| * |namespace |http://opcfoundation.org/UA/ | * |nodeClass |VariableType | * |typedDefinition |DataTypeDictionaryType i=72 | * |dataType |ByteString | * |dataType Name |Buffer i=15 | * |value rank |-1 | * |isAbstract |false | */ export interface UADataTypeDictionary_Base extends UABaseDataVariable_Base { dataTypeVersion?: UAProperty; "$namespaceUri"?: UAProperty; deprecated?: UAProperty; } export interface UADataTypeDictionary extends UABaseDataVariable, UADataTypeDictionary_Base { }