@opcua/for-node-red
Version:
The Node-RED node to communicate via OPC UA, powered NodeOPCUA and developed by Sterfive's team
18 lines (16 loc) • 1.21 kB
text/typescript
import type { DataType } from "node-opcua-variant";
import type { UABaseDataVariable, UABaseDataVariable_Base } from "./ua_base_data_variable";
// ----- this file has been automatically generated - do not edit
/**
* | | |
* |----------------|------------------------------------------------------------|
* |namespace |http://opcfoundation.org/UA/ |
* |nodeClass |VariableType |
* |typedDefinition |ServerVendorCapabilityType i=2137 |
* |dataType |Null |
* |dataType Name |VariantOptions i=0 |
* |value rank |-1 |
* |isAbstract |true |
*/
export type UAServerVendorCapability_Base<T, DT extends DataType> = UABaseDataVariable_Base<T, DT>;
export interface UAServerVendorCapability<T, DT extends DataType> extends UABaseDataVariable<T, DT>, UAServerVendorCapability_Base<T, DT> {}