UNPKG

@opcua/for-node-red

Version:

The Node-RED node to communicate via OPC UA, powered NodeOPCUA and developed by Sterfive's team

25 lines (22 loc) 1.39 kB
import type { DataType } from "node-opcua-variant"; import type { DT3DVector } from "./dt_3_d_vector"; import type { UABaseDataVariable } from "./ua_base_data_variable"; import type { UAVector, UAVector_Base } from "./ua_vector"; // ----- this file has been automatically generated - do not edit /** * | | | * |----------------|------------------------------------------------------------| * |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<T extends DT3DVector> extends UAVector_Base<T> { x: UABaseDataVariable<number, DataType.Double>; y: UABaseDataVariable<number, DataType.Double>; z: UABaseDataVariable<number, DataType.Double>; } export interface UA3DVector<T extends DT3DVector> extends UAVector<T>, UA3DVector_Base<T> {}