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"; /** * | | | * |----------------|------------------------------------------------------------| * |namespace |http://opcfoundation.org/UA/ | * |nodeClass |ObjectType | * |typedDefinition |UnitType i=32442 | * |isAbstract |true | */ export interface UAUnit_Base { symbol: UAProperty; unitSystem: UAProperty; discipline?: UAProperty; } export interface UAUnit extends UAObject, UAUnit_Base { }