import { DataType } from "node-opcua-variant"; import { DT3DVector } from "./dt_3_d_vector"; import { UAVector, UAVector_Base } from "./ua_vector"; import { UABaseDataVariable } from "./ua_base_data_variable"; /** * | | | * |----------------|------------------------------------------------------------| * |namespace |http://opcfoundation.org/UA/ | * |nodeClass |VariableType | * |typedDefinition |3DVectorType i=17716 | * |dataType |ExtensionObject | * |dataType Name |DT3DVector i=18808 | * |value rank |-1 | * |isAbstract |false | */ export interface UA3DVector_Base extends UAVector_Base { x: UABaseDataVariable; y: UABaseDataVariable; z: UABaseDataVariable; } export interface UA3DVector extends UAVector, UA3DVector_Base { }