// ----- this file has been automatically generated - do not edit import { UAProperty } from "node-opcua-address-space-base" import { DataType } from "node-opcua-variant" import { UInt16 } from "node-opcua-basic-types" import { UABaseDataVariable, UABaseDataVariable_Base } from "./ua_base_data_variable" /** * | | | * |----------------|------------------------------------------------------------| * |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 extends UABaseDataVariable_Base { rate: UAProperty; } export interface UAAlarmRateVariable extends UABaseDataVariable, UAAlarmRateVariable_Base { }