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) 963 B
import type { UAProperty } from "node-opcua-address-space-base"; import type { UAString } from "node-opcua-basic-types"; import type { DataType } from "node-opcua-variant"; import type { UAAuditEvent, UAAuditEvent_Base } from "./ua_audit_event"; /** * | | | * |----------------|------------------------------------------------------------| * |namespace |http://opcfoundation.org/UA/ | * |nodeClass |ObjectType | * |typedDefinition |AuditClientEventType i=23606 | * |isAbstract |true | */ export interface UAAuditClientEvent_Base extends UAAuditEvent_Base { serverUri: UAProperty<UAString, DataType.String>; } export interface UAAuditClientEvent extends UAAuditEvent, UAAuditClientEvent_Base { }