@opcua/for-node-red
Version:
The Node-RED node to communicate via OPC UA, powered NodeOPCUA and developed by Sterfive's team
23 lines (20 loc) • 1.4 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 { UAAnalogItem, UAAnalogItem_Base } from "./ua_analog_item";
// ----- this file has been automatically generated - do not edit
/**
* | | |
* |----------------|------------------------------------------------------------|
* |namespace |http://opcfoundation.org/UA/ |
* |nodeClass |VariableType |
* |typedDefinition |AnalogUnitRangeType i=17570 |
* |dataType |Variant |
* |dataType Name |(number | number[]) i=26 |
* |value rank |-2 |
* |isAbstract |false |
*/
export interface UAAnalogUnitRange_Base<T, DT extends DataType> extends UAAnalogItem_Base<T, DT> {
engineeringUnits: UAProperty<EUInformation, DataType.ExtensionObject>;
}
export interface UAAnalogUnitRange<T, DT extends DataType> extends Omit<UAAnalogItem<T, DT>, "engineeringUnits">, UAAnalogUnitRange_Base<T, DT> {}