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 |GuardVariableType i=15113 | * |dataType |LocalizedText | * |dataType Name |LocalizedText i=21 | * |value rank |-1 | * |isAbstract |false | */ export type UAGuardVariable_Base = UABaseDataVariable_Base; export interface UAGuardVariable extends UABaseDataVariable, UAGuardVariable_Base { }