import { UAProperty } from "node-opcua-address-space-base"; import { DataType } from "node-opcua-variant"; import { DTAxisInformation } from "./dt_axis_information"; import { UAArrayItem, UAArrayItem_Base } from "./ua_array_item"; /** * | | | * |----------------|------------------------------------------------------------| * |namespace |http://opcfoundation.org/UA/ | * |nodeClass |VariableType | * |typedDefinition |NDimensionArrayItemType i=12068 | * |dataType |Null | * |dataType Name |VariantOptions i=0 | * |value rank |-1 | * |isAbstract |false | */ export interface UANDimensionArrayItem_Base extends UAArrayItem_Base { axisDefinition: UAProperty; } export interface UANDimensionArrayItem extends UAArrayItem, UANDimensionArrayItem_Base { }