UNPKG

@opcua/for-node-red

Version:

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

23 lines (20 loc) 1.6 kB
import type { DataType } from "node-opcua-variant"; import type { DTSamplingIntervalDiagnostics } from "./dt_sampling_interval_diagnostics"; import type { UABaseDataVariable, UABaseDataVariable_Base } from "./ua_base_data_variable"; import type { UASamplingIntervalDiagnostics } from "./ua_sampling_interval_diagnostics"; // ----- this file has been automatically generated - do not edit /** * | | | * |----------------|------------------------------------------------------------| * |namespace |http://opcfoundation.org/UA/ | * |nodeClass |VariableType | * |typedDefinition |SamplingIntervalDiagnosticsArrayType i=2164 | * |dataType |ExtensionObject | * |dataType Name |DTSamplingIntervalDiagnostics[] i=856 | * |value rank |1 | * |isAbstract |false | */ export interface UASamplingIntervalDiagnosticsArray_Base<T extends DTSamplingIntervalDiagnostics[]> extends UABaseDataVariable_Base<T, DataType.ExtensionObject> { samplingIntervalDiagnostics: UASamplingIntervalDiagnostics<DTSamplingIntervalDiagnostics>; } export interface UASamplingIntervalDiagnosticsArray<T extends DTSamplingIntervalDiagnostics[]> extends UABaseDataVariable<T, DataType.ExtensionObject>, UASamplingIntervalDiagnosticsArray_Base<T> {}