UNPKG

@opcua/for-node-red

Version:

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

21 lines (18 loc) 1.05 kB
import type { UAObject } from "node-opcua-address-space-base"; import type { LocalizedText } from "node-opcua-data-model"; import type { UAStateVariable } from "./ua_state_variable"; import type { UATransitionVariable } from "./ua_transition_variable"; // ----- this file has been automatically generated - do not edit /** * | | | * |----------------|------------------------------------------------------------| * |namespace |http://opcfoundation.org/UA/ | * |nodeClass |ObjectType | * |typedDefinition |StateMachineType i=2299 | * |isAbstract |false | */ export interface UAStateMachine_Base { currentState: UAStateVariable<LocalizedText>; lastTransition?: UATransitionVariable<LocalizedText>; } export interface UAStateMachine extends UAObject, UAStateMachine_Base {}