@opcua/for-node-red
Version:
The Node-RED node to communicate via OPC UA, powered NodeOPCUA and developed by Sterfive's team
24 lines (21 loc) • 1.48 kB
text/typescript
import type { UAProperty } from "node-opcua-address-space-base";
import type { EUInformation } from "node-opcua-data-access";
import type { DataType } from "node-opcua-variant";
import type { DTOrientation } from "./dt_orientation";
import type { UABaseDataVariable, UABaseDataVariable_Base } from "./ua_base_data_variable";
// ----- this file has been automatically generated - do not edit
/**
* | | |
* |----------------|------------------------------------------------------------|
* |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<T extends DTOrientation> extends UABaseDataVariable_Base<T, DataType.ExtensionObject> {
angleUnit?: UAProperty<EUInformation, DataType.ExtensionObject>;
}
export interface UAOrientation<T extends DTOrientation> extends UABaseDataVariable<T, DataType.ExtensionObject>, UAOrientation_Base<T> {}