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.04 kB
import type { UAString } from "node-opcua-basic-types"; import type { ExtensionObject } from "node-opcua-extension-object"; import type { DTDataSetMeta } from "./dt_data_set_meta"; import type { DTSubscribedDataSet } from "./dt_subscribed_data_set"; /** * | | | * |-----------|------------------------------------------------------------| * | namespace |http://opcfoundation.org/UA/ | * | nodeClass |DataType | * | name |StandaloneSubscribedDataSetDataType | * | isAbstract|false | */ export interface DTStandaloneSubscribedDataSet extends DTSubscribedDataSet { name: UAString; dataSetFolder: UAString[]; dataSetMetaData: DTDataSetMeta; subscribedDataSet?: DTSubscribedDataSet; } export interface UDTStandaloneSubscribedDataSet extends ExtensionObject, DTStandaloneSubscribedDataSet { }