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 (23 loc) 1.1 kB
import type { UAString } from "node-opcua-basic-types"; import type { ExtensionObject } from "node-opcua-extension-object"; import type { ExpandedNodeId, NodeId } from "node-opcua-nodeid"; import type { DTStructure } from "./dt_structure"; import type { EnumNodeClass } from "./enum_node_class"; /** * | | | * |-----------|------------------------------------------------------------| * | namespace |http://opcfoundation.org/UA/ | * | nodeClass |DataType | * | name |AddReferencesItem | * | isAbstract|false | */ export interface DTAddReferencesItem extends DTStructure { sourceNodeId: NodeId; referenceTypeId: NodeId; isForward: boolean; targetServerUri: UAString; targetNodeId: ExpandedNodeId; targetNodeClass: EnumNodeClass; } export interface UDTAddReferencesItem extends ExtensionObject, DTAddReferencesItem { }