UNPKG

@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.1 kB
import type { UAProperty } from "node-opcua-address-space-base"; import type { DataType } from "node-opcua-variant"; import type { DTAddReferencesItem } from "./dt_add_references_item"; import type { UAAuditNodeManagementEvent, UAAuditNodeManagementEvent_Base } from "./ua_audit_node_management_event"; /** * | | | * |----------------|------------------------------------------------------------| * |namespace |http://opcfoundation.org/UA/ | * |nodeClass |ObjectType | * |typedDefinition |AuditAddReferencesEventType i=2095 | * |isAbstract |true | */ export interface UAAuditAddReferencesEvent_Base extends UAAuditNodeManagementEvent_Base { referencesToAdd: UAProperty<DTAddReferencesItem[], DataType.ExtensionObject>; } export interface UAAuditAddReferencesEvent extends UAAuditNodeManagementEvent, UAAuditAddReferencesEvent_Base { }