UNPKG

@opcua/for-node-red

Version:

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

16 lines (15 loc) 772 B
import type { UAMethod, UAObject } from "node-opcua-address-space-base"; /** * | | | * |----------------|------------------------------------------------------------| * |namespace |http://opcfoundation.org/UA/ | * |nodeClass |ObjectType | * |typedDefinition |ExtensionFieldsType i=15489 | * |isAbstract |false | */ export interface UAExtensionFields_Base { addExtensionField: UAMethod; removeExtensionField: UAMethod; } export interface UAExtensionFields extends UAObject, UAExtensionFields_Base { }