UNPKG

@opcua/for-node-red

Version:

The Node-RED node to communicate via OPC UA, powered NodeOPCUA and developed by Sterfive's team

17 lines (16 loc) 1.11 kB
import type { LocalizedText } from "node-opcua-data-model"; import type { 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<T extends LocalizedText> = UAGuardVariable_Base<T>; export interface UAElseGuardVariable<T extends LocalizedText> extends UAGuardVariable<T>, UAElseGuardVariable_Base<T> { }