UNPKG

@opcua/for-node-red

Version:

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

24 lines (23 loc) 1.16 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 { DTKeyValuePair } from "./dt_key_value_pair"; import type { DTPublishedDataSetSource } from "./dt_published_data_set_source"; import type { DTStructure } from "./dt_structure"; /** * | | | * |-----------|------------------------------------------------------------| * | namespace |http://opcfoundation.org/UA/ | * | nodeClass |DataType | * | name |PublishedDataSetDataType | * | isAbstract|false | */ export interface DTPublishedDataSet extends DTStructure { name: UAString; dataSetFolder: UAString[]; dataSetMetaData: DTDataSetMeta; extensionFields: DTKeyValuePair[]; dataSetSource?: DTPublishedDataSetSource; } export interface UDTPublishedDataSet extends ExtensionObject, DTPublishedDataSet { }