UNPKG

@opcua/for-node-red

Version:

The Node-RED node to communicate via OPC UA, powered NodeOPCUA and developed by Sterfive's team

20 lines (17 loc) 1.11 kB
import type { UAProperty } from "node-opcua-address-space-base"; import type { UInt32 } from "node-opcua-basic-types"; import type { DataType } from "node-opcua-variant"; import type { UAAuditConditionEvent, UAAuditConditionEvent_Base } from "./ua_audit_condition_event"; // ----- this file has been automatically generated - do not edit /** * | | | * |----------------|------------------------------------------------------------| * |namespace |http://opcfoundation.org/UA/ | * |nodeClass |ObjectType | * |typedDefinition |AuditConditionRespondEventType i=8927 | * |isAbstract |false | */ export interface UAAuditConditionRespondEvent_Base extends UAAuditConditionEvent_Base { selectedResponse: UAProperty<UInt32, DataType.UInt32>; } export interface UAAuditConditionRespondEvent extends UAAuditConditionEvent, UAAuditConditionRespondEvent_Base {}