UNPKG

@opcua/for-node-red

Version:

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

20 lines (19 loc) 1.01 kB
import type { UAObject, UAProperty } from "node-opcua-address-space-base"; import type { UAString } from "node-opcua-basic-types"; import type { LocalizedText } from "node-opcua-data-model"; import type { DataType } from "node-opcua-variant"; /** * | | | * |----------------|------------------------------------------------------------| * |namespace |http://opcfoundation.org/UA/ | * |nodeClass |ObjectType | * |typedDefinition |UnitType i=32442 | * |isAbstract |true | */ export interface UAUnit_Base { symbol: UAProperty<LocalizedText, DataType.LocalizedText>; unitSystem: UAProperty<UAString, DataType.String>; discipline?: UAProperty<UAString, DataType.String>; } export interface UAUnit extends UAObject, UAUnit_Base { }