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) 1.03 kB
import type { UAMethod, UAObject } from "node-opcua-address-space-base"; import type { UAPubSubKeyPushTargetFolder } from "./ua_pub_sub_key_push_target_folder"; import type { UASecurityGroupFolder } from "./ua_security_group_folder"; /** * | | | * |----------------|------------------------------------------------------------| * |namespace |http://opcfoundation.org/UA/ | * |nodeClass |ObjectType | * |typedDefinition |PubSubKeyServiceType i=15906 | * |isAbstract |false | */ export interface UAPubSubKeyService_Base { getSecurityKeys?: UAMethod; getSecurityGroup?: UAMethod; securityGroups?: UASecurityGroupFolder; keyPushTargets?: UAPubSubKeyPushTargetFolder; } export interface UAPubSubKeyService extends UAObject, UAPubSubKeyService_Base { }