import type { UAProperty } from "node-opcua-address-space-base";
import type { EUInformation } from "node-opcua-data-access";
import type { DataType } from "node-opcua-variant";

import type { DTVector } from "./dt_vector";
import type { UABaseDataVariable, UABaseDataVariable_Base } from "./ua_base_data_variable";

// ----- this file has been automatically generated - do not edit

/**
 * |                |                                                            |
 * |----------------|------------------------------------------------------------|
 * |namespace       |http://opcfoundation.org/UA/                                |
 * |nodeClass       |VariableType                                                |
 * |typedDefinition |VectorType i=17714                                          |
 * |dataType        |ExtensionObject                                             |
 * |dataType Name   |DTVector i=18807                                            |
 * |value rank      |-1                                                          |
 * |isAbstract      |true                                                        |
 */
export interface UAVector_Base<T extends DTVector>  extends UABaseDataVariable_Base<T, DataType.ExtensionObject> {
    vectorUnit?: UAProperty<EUInformation, DataType.ExtensionObject>;
}
export interface UAVector<T extends DTVector> extends UABaseDataVariable<T, DataType.ExtensionObject>, UAVector_Base<T> {}