UNPKG

@opcua/for-node-red

Version:

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

22 lines (19 loc) 1.09 kB
import type { UAObject, UAProperty } from "node-opcua-address-space-base"; import type { DataType } from "node-opcua-variant"; import type { EnumConversionLimitEnum } from "./enum_conversion_limit_enum"; import type { UAUnit, UAUnit_Base } from "./ua_unit"; // ----- this file has been automatically generated - do not edit /** * | | | * |----------------|------------------------------------------------------------| * |namespace |http://opcfoundation.org/UA/ | * |nodeClass |ObjectType | * |typedDefinition |ServerUnitType i=32447 | * |isAbstract |false | */ export interface UAServerUnit_Base extends UAUnit_Base { alternativeUnits?: UAObject; conversionLimit: UAProperty<EnumConversionLimitEnum, DataType.Int32>; coherentUnit?: UAUnit; } export interface UAServerUnit extends UAUnit, UAServerUnit_Base {}