import { LocalizedText } from "node-opcua-data-model"; import { UAGuardVariable, UAGuardVariable_Base } from "./ua_guard_variable"; /** * | | | * |----------------|------------------------------------------------------------| * |namespace |http://opcfoundation.org/UA/ | * |nodeClass |VariableType | * |typedDefinition |ElseGuardVariableType i=15317 | * |dataType |LocalizedText | * |dataType Name |LocalizedText i=21 | * |value rank |-1 | * |isAbstract |false | */ export type UAElseGuardVariable_Base = UAGuardVariable_Base; export interface UAElseGuardVariable extends UAGuardVariable, UAElseGuardVariable_Base { }