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 |DataTypeDescriptionType i=69 | * |dataType |String | * |dataType Name |UAString i=12 | * |value rank |-1 | * |isAbstract |false | */ export interface UADataTypeDescription_Base extends UABaseDataVariable_Base { dataTypeVersion?: UAProperty; dictionaryFragment?: UAProperty; } export interface UADataTypeDescription extends UABaseDataVariable, UADataTypeDescription_Base { }