@opcua/for-node-red
Version:
The Node-RED node to communicate via OPC UA, powered NodeOPCUA and developed by Sterfive's team
17 lines (15 loc) • 966 B
text/typescript
import type { UABaseDataVariable } from "./ua_base_data_variable";
import type { UATransitionEvent, UATransitionEvent_Base } from "./ua_transition_event";
// ----- this file has been automatically generated - do not edit
/**
* | | |
* |----------------|------------------------------------------------------------|
* |namespace |http://opcfoundation.org/UA/ |
* |nodeClass |ObjectType |
* |typedDefinition |ProgramTransitionEventType i=2378 |
* |isAbstract |true |
*/
export interface UAProgramTransitionEvent_Base extends UATransitionEvent_Base {
intermediateResult: UABaseDataVariable<any, any>;
}
export interface UAProgramTransitionEvent extends UATransitionEvent, UAProgramTransitionEvent_Base {}