import { UAObject } from "node-opcua-address-space-base"; import { LocalizedText } from "node-opcua-data-model"; import { UAStateVariable } from "./ua_state_variable"; import { UATransitionVariable } from "./ua_transition_variable"; /** * | | | * |----------------|------------------------------------------------------------| * |namespace |http://opcfoundation.org/UA/ | * |nodeClass |ObjectType | * |typedDefinition |StateMachineType i=2299 | * |isAbstract |false | */ export interface UAStateMachine_Base { currentState: UAStateVariable; lastTransition?: UATransitionVariable; } export interface UAStateMachine extends UAObject, UAStateMachine_Base { }