UNPKG

@opcua/for-node-red

Version:

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

13 lines (12 loc) 724 B
import type { UASystemEvent, UASystemEvent_Base } from "./ua_system_event"; /** * | | | * |----------------|------------------------------------------------------------| * |namespace |http://opcfoundation.org/UA/ | * |nodeClass |ObjectType | * |typedDefinition |RefreshEndEventType i=2788 | * |isAbstract |true | */ export type UARefreshEndEvent_Base = UASystemEvent_Base; export interface UARefreshEndEvent extends UASystemEvent, UARefreshEndEvent_Base { }