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) 728 B
import type { UAMethod, UAObject } from "node-opcua-address-space-base"; /** * | | | * |----------------|------------------------------------------------------------| * |namespace |http://opcfoundation.org/UA/ | * |nodeClass |ObjectType | * |typedDefinition |RoleSetType i=15607 | * |isAbstract |false | */ export interface UARoleSet_Base { addRole: UAMethod; removeRole: UAMethod; } export interface UARoleSet extends UAObject, UARoleSet_Base { }