@opcua/for-node-red
Version:
The Node-RED node to communicate via OPC UA, powered NodeOPCUA and developed by Sterfive's team
22 lines (21 loc) • 1.38 kB
TypeScript
import type { UAProperty } from "node-opcua-address-space-base";
import type { EUInformation } from "node-opcua-data-access";
import type { DataType } from "node-opcua-variant";
import type { DTVector } from "./dt_vector";
import type { UABaseDataVariable, UABaseDataVariable_Base } from "./ua_base_data_variable";
/**
* | | |
* |----------------|------------------------------------------------------------|
* |namespace |http://opcfoundation.org/UA/ |
* |nodeClass |VariableType |
* |typedDefinition |VectorType i=17714 |
* |dataType |ExtensionObject |
* |dataType Name |DTVector i=18807 |
* |value rank |-1 |
* |isAbstract |true |
*/
export interface UAVector_Base<T extends DTVector> extends UABaseDataVariable_Base<T, DataType.ExtensionObject> {
vectorUnit?: UAProperty<EUInformation, DataType.ExtensionObject>;
}
export interface UAVector<T extends DTVector> extends UABaseDataVariable<T, DataType.ExtensionObject>, UAVector_Base<T> {
}