@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) • 989 B
TypeScript
import type { ExtensionObject } from "node-opcua-extension-object";
import type { DTPubSubConnection } from "./dt_pub_sub_connection";
import type { DTPublishedDataSet } from "./dt_published_data_set";
import type { DTStructure } from "./dt_structure";
/**
* | | |
* |-----------|------------------------------------------------------------|
* | namespace |http://opcfoundation.org/UA/ |
* | nodeClass |DataType |
* | name |PubSubConfigurationDataType |
* | isAbstract|false |
*/
export interface DTPubSubConfiguration extends DTStructure {
publishedDataSets: DTPublishedDataSet[];
connections: DTPubSubConnection[];
enabled: boolean;
}
export interface UDTPubSubConfiguration extends ExtensionObject, DTPubSubConfiguration {
}