import { UAObject, UAProperty } from "node-opcua-address-space-base"; import { DataType } from "node-opcua-variant"; import { LocalizedText } from "node-opcua-data-model"; import { UAString } from "node-opcua-basic-types"; import { DTAnnotation } from "./dt_annotation"; import { DTQuantityDimension } from "./dt_quantity_dimension"; /** * | | | * |----------------|------------------------------------------------------------| * |namespace |http://opcfoundation.org/UA/ | * |nodeClass |ObjectType | * |typedDefinition |QuantityType i=32475 | * |isAbstract |false | */ export interface UAQuantity_Base { symbol?: UAProperty; annotation?: UAProperty; conversionService?: UAProperty; dimension: UAProperty; serverUnits: UAObject; } export interface UAQuantity extends UAObject, UAQuantity_Base { }