import { UAProperty } from "node-opcua-address-space-base"; import { DataType } from "node-opcua-variant"; import { DTXV } from "./dt_xv"; import { DTAxisInformation } from "./dt_axis_information"; import { UAArrayItem, UAArrayItem_Base } from "./ua_array_item"; /** * | | | * |----------------|------------------------------------------------------------| * |namespace |http://opcfoundation.org/UA/ | * |nodeClass |VariableType | * |typedDefinition |XYArrayItemType i=12038 | * |dataType |ExtensionObject | * |dataType Name |DTXV[] i=12080 | * |value rank |1 | * |isAbstract |false | */ export interface UAXYArrayItem_Base extends UAArrayItem_Base { xAxisDefinition: UAProperty; } export interface UAXYArrayItem extends UAArrayItem, UAXYArrayItem_Base { }