import { DataType } from "node-opcua-variant"; import { DT3DOrientation } from "./dt_3_d_orientation"; import { UAOrientation, UAOrientation_Base } from "./ua_orientation"; import { UABaseDataVariable } from "./ua_base_data_variable"; /** * | | | * |----------------|------------------------------------------------------------| * |namespace |http://opcfoundation.org/UA/ | * |nodeClass |VariableType | * |typedDefinition |3DOrientationType i=18781 | * |dataType |ExtensionObject | * |dataType Name |DT3DOrientation i=18812 | * |value rank |-1 | * |isAbstract |false | */ export interface UA3DOrientation_Base extends UAOrientation_Base { a: UABaseDataVariable; b: UABaseDataVariable; c: UABaseDataVariable; } export interface UA3DOrientation extends UAOrientation, UA3DOrientation_Base { }