@opcua/for-node-red
Version:
The Node-RED node to communicate via OPC UA, powered NodeOPCUA and developed by Sterfive's team
18 lines (17 loc) • 1.02 kB
TypeScript
import type { UAProperty } from "node-opcua-address-space-base";
import type { DataType } from "node-opcua-variant";
import type { DTSemanticChangeStructure } from "./dt_semantic_change_structure";
import type { UABaseEvent, UABaseEvent_Base } from "./ua_base_event";
/**
* | | |
* |----------------|------------------------------------------------------------|
* |namespace |http://opcfoundation.org/UA/ |
* |nodeClass |ObjectType |
* |typedDefinition |SemanticChangeEventType i=2738 |
* |isAbstract |true |
*/
export interface UASemanticChangeEvent_Base extends UABaseEvent_Base {
changes: UAProperty<DTSemanticChangeStructure[], DataType.ExtensionObject>;
}
export interface UASemanticChangeEvent extends UABaseEvent, UASemanticChangeEvent_Base {
}