@opcua/for-node-red
Version:
The Node-RED node to communicate via OPC UA, powered NodeOPCUA and developed by Sterfive's team
23 lines (20 loc) • 1.38 kB
text/typescript
import type { UAProperty } from "node-opcua-address-space-base";
import type { UInt16 } from "node-opcua-basic-types";
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 |AlarmRateVariableType i=17277 |
* |dataType |Double |
* |dataType Name |number i=11 |
* |value rank |-1 |
* |isAbstract |false |
*/
export interface UAAlarmRateVariable_Base<T extends number> extends UABaseDataVariable_Base<T, DataType.Double> {
rate: UAProperty<UInt16, DataType.UInt16>;
}
export interface UAAlarmRateVariable<T extends number> extends UABaseDataVariable<T, DataType.Double>, UAAlarmRateVariable_Base<T> {}