// ----- this file has been automatically generated - do not edit import { DataType } from "node-opcua-variant" import { UInt32, Int32 } from "node-opcua-basic-types" import { DTRationalNumber } from "./dt_rational_number" import { UABaseDataVariable, UABaseDataVariable_Base } from "./ua_base_data_variable" /** * | | | * |----------------|------------------------------------------------------------| * |namespace |http://opcfoundation.org/UA/ | * |nodeClass |VariableType | * |typedDefinition |RationalNumberType i=17709 | * |dataType |ExtensionObject | * |dataType Name |DTRationalNumber i=18806 | * |value rank |-1 | * |isAbstract |false | */ export interface UARationalNumber_Base extends UABaseDataVariable_Base { numerator: UABaseDataVariable; denominator: UABaseDataVariable; } export interface UARationalNumber extends UABaseDataVariable, UARationalNumber_Base { }