UNPKG

@opcua/for-node-red

Version:

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

17 lines (16 loc) 835 B
import type { UAObject, UAProperty } from "node-opcua-address-space-base"; import type { UInt32 } from "node-opcua-basic-types"; import type { DataType } from "node-opcua-variant"; /** * | | | * |----------------|------------------------------------------------------------| * |namespace |http://opcfoundation.org/UA/ | * |nodeClass |ObjectType | * |typedDefinition |StateType i=2307 | * |isAbstract |false | */ export interface UAState_Base { stateNumber: UAProperty<UInt32, DataType.UInt32>; } export interface UAState extends UAObject, UAState_Base { }