@opcua/for-node-red
Version:
The Node-RED node to communicate via OPC UA, powered NodeOPCUA and developed by Sterfive's team
26 lines (23 loc) • 1.35 kB
text/typescript
import type { UAMethod } from "node-opcua-address-space-base";
import type { UAPubSubDiagnosticsReaderGroup } from "./ua_pub_sub_diagnostics_reader_group";
import type { UAPubSubGroup, UAPubSubGroup_Base } from "./ua_pub_sub_group";
import type { UAReaderGroupMessage } from "./ua_reader_group_message";
import type { UAReaderGroupTransport } from "./ua_reader_group_transport";
// ----- this file has been automatically generated - do not edit
/**
* | | |
* |----------------|------------------------------------------------------------|
* |namespace |http://opcfoundation.org/UA/ |
* |nodeClass |ObjectType |
* |typedDefinition |ReaderGroupType i=17999 |
* |isAbstract |false |
*/
export interface UAReaderGroup_Base extends UAPubSubGroup_Base {
// PlaceHolder for $DataSetReaderName$
diagnostics?: UAPubSubDiagnosticsReaderGroup;
transportSettings?: UAReaderGroupTransport;
messageSettings?: UAReaderGroupMessage;
addDataSetReader?: UAMethod;
removeDataSetReader?: UAMethod;
}
export interface UAReaderGroup extends UAPubSubGroup, UAReaderGroup_Base {}