@opcua/for-node-red
Version:
The Node-RED node to communicate via OPC UA, powered NodeOPCUA and developed by Sterfive's team
19 lines (18 loc) • 982 B
TypeScript
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";
/**
* | | |
* |----------------|------------------------------------------------------------|
* |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 {
}