@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.1 kB
TypeScript
import type { EUInformation } from "node-opcua-data-access";
import type { LocalizedText } from "node-opcua-data-model";
import type { ExtensionObject } from "node-opcua-extension-object";
import type { DTRange } from "./dt_range";
import type { DTStructure } from "./dt_structure";
import type { EnumAxisScale } from "./enum_axis_scale";
/**
* | | |
* |-----------|------------------------------------------------------------|
* | namespace |http://opcfoundation.org/UA/ |
* | nodeClass |DataType |
* | name |AxisInformation |
* | isAbstract|false |
*/
export interface DTAxisInformation extends DTStructure {
engineeringUnits: EUInformation;
euRange: DTRange;
title: LocalizedText;
axisScaleType: EnumAxisScale;
axisSteps: number[];
}
export interface UDTAxisInformation extends ExtensionObject, DTAxisInformation {
}