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) 286 B
import type { UAVariableT } from "node-opcua-address-space-base"; import type { DataType } from "node-opcua-variant"; export interface UAProperty_Base<T, DT extends DataType> { } export interface UAProperty<T, DT extends DataType> extends UAVariableT<T, DT>, UAProperty_Base<T, DT> { }