@opcua/for-node-red
Version:
The Node-RED node to communicate via OPC UA, powered NodeOPCUA and developed by Sterfive's team
24 lines (23 loc) • 1.06 kB
TypeScript
import type { SByte } from "node-opcua-basic-types";
import type { ExtensionObject } from "node-opcua-extension-object";
import type { DTStructure } from "./dt_structure";
/**
* | | |
* |-----------|------------------------------------------------------------|
* | namespace |http://opcfoundation.org/UA/ |
* | nodeClass |DataType |
* | name |QuantityDimension |
* | isAbstract|false |
*/
export interface DTQuantityDimension extends DTStructure {
massExponent: SByte;
lengthExponent: SByte;
timeExponent: SByte;
electricCurrentExponent: SByte;
amountOfSubstanceExponent: SByte;
luminousIntensityExponent: SByte;
absoluteTemperatureExponent: SByte;
dimensionlessExponent: SByte;
}
export interface UDTQuantityDimension extends ExtensionObject, DTQuantityDimension {
}