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.16 kB
import type { UAObject, UAProperty } from "node-opcua-address-space-base"; import type { DataType } from "node-opcua-variant"; import type { DTSimpleAttributeOperand } from "./dt_simple_attribute_operand"; import type { UAFolder } from "./ua_folder"; /** * | | | * |----------------|------------------------------------------------------------| * |namespace |http://opcfoundation.org/UA/ | * |nodeClass |ObjectType | * |typedDefinition |HistoricalEventConfigurationType i=32621 | * |isAbstract |false | */ export interface UAHistoricalEventConfiguration_Base { eventTypes: UAFolder; startOfArchive?: UAProperty<Date, DataType.DateTime>; startOfOnlineArchive?: UAProperty<Date, DataType.DateTime>; sortByEventFields?: UAProperty<DTSimpleAttributeOperand[], DataType.ExtensionObject>; } export interface UAHistoricalEventConfiguration extends UAObject, UAHistoricalEventConfiguration_Base { }