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 |YArrayItemType i=12029 | * |dataType |Null | * |dataType Name |VariantOptions[] i=0 | * |value rank |1 | * |isAbstract |false | */ export interface UAYArrayItem_Base extends UAArrayItem_Base { xAxisDefinition: UAProperty; } export interface UAYArrayItem extends UAArrayItem, UAYArrayItem_Base { }