import { UAProperty } from "node-opcua-address-space-base"; import { DataType } from "node-opcua-variant"; import { UAString } from "node-opcua-basic-types"; import { UABaseDataVariable, UABaseDataVariable_Base } from "./ua_base_data_variable"; /** * | | | * |----------------|------------------------------------------------------------| * |namespace |http://opcfoundation.org/UA/ | * |nodeClass |VariableType | * |typedDefinition |AudioVariableType i=17986 | * |dataType |ByteString | * |dataType Name |Buffer i=16307 | * |value rank |-1 | * |isAbstract |false | */ export interface UAAudioVariable_Base extends UABaseDataVariable_Base { listId?: UAProperty; agencyId?: UAProperty; versionId?: UAProperty; } export interface UAAudioVariable extends UABaseDataVariable, UAAudioVariable_Base { }