UNPKG

@opcua/for-node-red

Version:

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

24 lines (23 loc) 1.45 kB
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 { DTRange } from "./dt_range"; import type { UADataItem, UADataItem_Base } from "./ua_data_item"; /** * | | | * |----------------|------------------------------------------------------------| * |namespace |http://opcfoundation.org/UA/ | * |nodeClass |VariableType | * |typedDefinition |BaseAnalogType i=15318 | * |dataType |Variant | * |dataType Name |(number | number[]) i=26 | * |value rank |-2 | * |isAbstract |false | */ export interface UABaseAnalog_Base<T, DT extends DataType> extends UADataItem_Base<T, DT> { instrumentRange?: UAProperty<DTRange, DataType.ExtensionObject>; euRange?: UAProperty<DTRange, DataType.ExtensionObject>; engineeringUnits?: UAProperty<EUInformation, DataType.ExtensionObject>; } export interface UABaseAnalog<T, DT extends DataType> extends UADataItem<T, DT>, UABaseAnalog_Base<T, DT> { }