import { UAProperty } from "node-opcua-address-space-base"; import { DataType } from "node-opcua-variant"; import { UABaseDataVariable, UABaseDataVariable_Base } from "./ua_base_data_variable"; /** * | | | * |----------------|------------------------------------------------------------| * |namespace |http://opcfoundation.org/UA/ | * |nodeClass |VariableType | * |typedDefinition |ConditionVariableType i=9002 | * |dataType |Null | * |dataType Name |(VariantOptions | VariantOptions[]) i=0 | * |value rank |-2 | * |isAbstract |false | */ export interface UAConditionVariable_Base extends UABaseDataVariable_Base { sourceTimestamp: UAProperty; } export interface UAConditionVariable extends UABaseDataVariable, UAConditionVariable_Base { }