import { UAProperty } from "node-opcua-address-space-base"; import { DataType } from "node-opcua-variant"; import { EUInformation } from "node-opcua-data-access"; import { DTVector } from "./dt_vector"; import { UABaseDataVariable, UABaseDataVariable_Base } from "./ua_base_data_variable"; /** * | | | * |----------------|------------------------------------------------------------| * |namespace |http://opcfoundation.org/UA/ | * |nodeClass |VariableType | * |typedDefinition |VectorType i=17714 | * |dataType |ExtensionObject | * |dataType Name |DTVector i=18807 | * |value rank |-1 | * |isAbstract |true | */ export interface UAVector_Base extends UABaseDataVariable_Base { vectorUnit?: UAProperty; } export interface UAVector extends UABaseDataVariable, UAVector_Base { }