import { UAProperty } from "node-opcua-address-space-base"; import { DataType } from "node-opcua-variant"; import { DTReferenceDescription } from "./dt_reference_description"; import { DTReferenceListEntry } from "./dt_reference_list_entry"; import { UABaseDataVariable, UABaseDataVariable_Base } from "./ua_base_data_variable"; /** * | | | * |----------------|------------------------------------------------------------| * |namespace |http://opcfoundation.org/UA/ | * |nodeClass |VariableType | * |typedDefinition |ReferenceDescriptionVariableType i=32657 | * |dataType |ExtensionObject | * |dataType Name |DTReferenceDescription i=32659 | * |value rank |-1 | * |isAbstract |false | */ export interface UAReferenceDescriptionVariable_Base extends UABaseDataVariable_Base { referenceRefinement?: UAProperty; } export interface UAReferenceDescriptionVariable extends UABaseDataVariable, UAReferenceDescriptionVariable_Base { }