import { UAProperty } from "node-opcua-address-space-base"; import { DataType } from "node-opcua-variant"; import { EUInformation } from "node-opcua-data-access"; import { DTOrientation } from "./dt_orientation"; import { UABaseDataVariable, UABaseDataVariable_Base } from "./ua_base_data_variable"; /** * | | | * |----------------|------------------------------------------------------------| * |namespace |http://opcfoundation.org/UA/ | * |nodeClass |VariableType | * |typedDefinition |OrientationType i=18779 | * |dataType |ExtensionObject | * |dataType Name |DTOrientation i=18811 | * |value rank |-1 | * |isAbstract |true | */ export interface UAOrientation_Base extends UABaseDataVariable_Base { angleUnit?: UAProperty; } export interface UAOrientation extends UABaseDataVariable, UAOrientation_Base { }