UNPKG

@opcua/for-node-red

Version:

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

20 lines (19 loc) 1.09 kB
import type { UAObject, UAProperty } from "node-opcua-address-space-base"; import type { DataType } from "node-opcua-variant"; import type { DTDataSetMeta } from "./dt_data_set_meta"; import type { UASubscribedDataSet } from "./ua_subscribed_data_set"; /** * | | | * |----------------|------------------------------------------------------------| * |namespace |http://opcfoundation.org/UA/ | * |nodeClass |ObjectType | * |typedDefinition |StandaloneSubscribedDataSetType i=23828 | * |isAbstract |false | */ export interface UAStandaloneSubscribedDataSet_Base { subscribedDataSet: UASubscribedDataSet; dataSetMetaData: UAProperty<DTDataSetMeta, DataType.ExtensionObject>; isConnected: UAProperty<boolean, DataType.Boolean>; } export interface UAStandaloneSubscribedDataSet extends UAObject, UAStandaloneSubscribedDataSet_Base { }