@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) • 1.1 kB
TypeScript
import type { UAMethod, UAProperty } from "node-opcua-address-space-base";
import type { DataType } from "node-opcua-variant";
import type { DTFieldTarget } from "./dt_field_target";
import type { UASubscribedDataSet, UASubscribedDataSet_Base } from "./ua_subscribed_data_set";
/**
* | | |
* |----------------|------------------------------------------------------------|
* |namespace |http://opcfoundation.org/UA/ |
* |nodeClass |ObjectType |
* |typedDefinition |TargetVariablesType i=15111 |
* |isAbstract |false |
*/
export interface UATargetVariables_Base extends UASubscribedDataSet_Base {
targetVariables: UAProperty<DTFieldTarget[], DataType.ExtensionObject>;
addTargetVariables?: UAMethod;
removeTargetVariables?: UAMethod;
}
export interface UATargetVariables extends UASubscribedDataSet, UATargetVariables_Base {
}