UNPKG

@opcua/for-node-red

Version:

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

7 lines (6 loc) 310 B
import type { UAVariableT } from "node-opcua-address-space-base"; import type { DataType } from "node-opcua-variant"; export interface UABaseDataVariable_Base<T, DT extends DataType> { } export interface UABaseDataVariable<T, DT extends DataType> extends UAVariableT<T, DT>, UABaseDataVariable_Base<T, DT> { }