@opcua/for-node-red
Version:
The Node-RED node to communicate via OPC UA, powered NodeOPCUA and developed by Sterfive's team
19 lines (18 loc) • 1.11 kB
TypeScript
import type { UAProperty } from "node-opcua-address-space-base";
import type { UAString } from "node-opcua-basic-types";
import type { DataType } from "node-opcua-variant";
import type { UAConnectionTransport, UAConnectionTransport_Base } from "./ua_connection_transport";
/**
* | | |
* |----------------|------------------------------------------------------------|
* |namespace |http://opcfoundation.org/UA/ |
* |nodeClass |ObjectType |
* |typedDefinition |BrokerConnectionTransportType i=15155 |
* |isAbstract |false |
*/
export interface UABrokerConnectionTransport_Base extends UAConnectionTransport_Base {
resourceUri: UAProperty<UAString, DataType.String>;
authenticationProfileUri: UAProperty<UAString, DataType.String>;
}
export interface UABrokerConnectionTransport extends UAConnectionTransport, UABrokerConnectionTransport_Base {
}