import { UAProperty } from "node-opcua-address-space-base"; import { DataType } from "node-opcua-variant"; import { LocalizedText } from "node-opcua-data-model"; import { UABaseDataVariable, UABaseDataVariable_Base } from "./ua_base_data_variable"; /** * | | | * |----------------|------------------------------------------------------------| * |namespace |http://opcfoundation.org/UA/ | * |nodeClass |VariableType | * |typedDefinition |OptionSetType i=11487 | * |dataType |Null | * |dataType Name |VariantOptions i=0 | * |value rank |-1 | * |isAbstract |false | */ export interface UAOptionSet_Base extends UABaseDataVariable_Base { optionSetValues: UAProperty; bitMask?: UAProperty; } export interface UAOptionSet extends UABaseDataVariable, UAOptionSet_Base { }