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.06 kB
import type { LocalizedText } from "node-opcua-data-model"; import type { UABaseEvent, UABaseEvent_Base } from "./ua_base_event"; import type { UAStateVariable } from "./ua_state_variable"; import type { UATransitionVariable } from "./ua_transition_variable"; /** * | | | * |----------------|------------------------------------------------------------| * |namespace |http://opcfoundation.org/UA/ | * |nodeClass |ObjectType | * |typedDefinition |TransitionEventType i=2311 | * |isAbstract |true | */ export interface UATransitionEvent_Base extends UABaseEvent_Base { transition: UATransitionVariable<LocalizedText>; fromState: UAStateVariable<LocalizedText>; toState: UAStateVariable<LocalizedText>; } export interface UATransitionEvent extends UABaseEvent, UATransitionEvent_Base { }