UNPKG

@opcua/for-node-red

Version:

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

13 lines (12 loc) 681 B
import type { UAState, UAState_Base } from "./ua_state"; /** * | | | * |----------------|------------------------------------------------------------| * |namespace |http://opcfoundation.org/UA/ | * |nodeClass |ObjectType | * |typedDefinition |ChoiceStateType i=15109 | * |isAbstract |false | */ export type UAChoiceState_Base = UAState_Base; export interface UAChoiceState extends UAState, UAChoiceState_Base { }