UNPKG

@opcua/for-node-red

Version:

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

20 lines (19 loc) 985 B
import type { UAMethod, UAObject } from "node-opcua-address-space-base"; import type { DataType } from "node-opcua-variant"; import type { EnumPubSubState } from "./enum_pub_sub_state"; import type { UABaseDataVariable } from "./ua_base_data_variable"; /** * | | | * |----------------|------------------------------------------------------------| * |namespace |http://opcfoundation.org/UA/ | * |nodeClass |ObjectType | * |typedDefinition |PubSubStatusType i=14643 | * |isAbstract |false | */ export interface UAPubSubStatus_Base { state: UABaseDataVariable<EnumPubSubState, DataType.Int32>; enable?: UAMethod; disable?: UAMethod; } export interface UAPubSubStatus extends UAObject, UAPubSubStatus_Base { }