UNPKG

@opcua/for-node-red

Version:

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

24 lines (21 loc) 1.46 kB
import type { UAProperty } from "node-opcua-address-space-base"; import type { LocalizedText } from "node-opcua-data-model"; import type { DataType } from "node-opcua-variant"; import type { DTContentFilter } from "./dt_content_filter"; import type { UAGuardVariable, UAGuardVariable_Base } from "./ua_guard_variable"; // ----- this file has been automatically generated - do not edit /** * | | | * |----------------|------------------------------------------------------------| * |namespace |http://opcfoundation.org/UA/ | * |nodeClass |VariableType | * |typedDefinition |ExpressionGuardVariableType i=15128 | * |dataType |LocalizedText | * |dataType Name |LocalizedText i=21 | * |value rank |-1 | * |isAbstract |false | */ export interface UAExpressionGuardVariable_Base<T extends LocalizedText> extends UAGuardVariable_Base<T> { expression: UAProperty<DTContentFilter, DataType.ExtensionObject>; } export interface UAExpressionGuardVariable<T extends LocalizedText> extends UAGuardVariable<T>, UAExpressionGuardVariable_Base<T> {}