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 (20 loc) 1.07 kB
import type { ExtensionObject } from "node-opcua-extension-object"; import type { NodeId } from "node-opcua-nodeid"; import type { DTContentFilter } from "./dt_content_filter"; import type { DTPublishedDataSetSource } from "./dt_published_data_set_source"; import type { DTSimpleAttributeOperand } from "./dt_simple_attribute_operand"; /** * | | | * |-----------|------------------------------------------------------------| * | namespace |http://opcfoundation.org/UA/ | * | nodeClass |DataType | * | name |PublishedEventsDataType | * | isAbstract|false | */ export interface DTPublishedEvents extends DTPublishedDataSetSource { eventNotifier: NodeId; selectedFields: DTSimpleAttributeOperand[]; filter: DTContentFilter; } export interface UDTPublishedEvents extends ExtensionObject, DTPublishedEvents { }