UNPKG

@opcua/for-node-red

Version:

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

21 lines (20 loc) 1.06 kB
import type { ExtensionObject } from "node-opcua-extension-object"; import type { DTActionMethod } from "./dt_action_method"; import type { DTActionTarget } from "./dt_action_target"; import type { DTDataSetMeta } from "./dt_data_set_meta"; import type { DTPublishedAction } from "./dt_published_action"; /** * | | | * |-----------|------------------------------------------------------------| * | namespace |http://opcfoundation.org/UA/ | * | nodeClass |DataType | * | name |PublishedActionMethodDataType | * | isAbstract|false | */ export interface DTPublishedActionMethod extends DTPublishedAction { requestDataSetMetaData: DTDataSetMeta; actionTargets: DTActionTarget[]; actionMethods: DTActionMethod[]; } export interface UDTPublishedActionMethod extends ExtensionObject, DTPublishedActionMethod { }