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 (18 loc) 1.01 kB
import type { UAMethod, UAObject, UAProperty } from "node-opcua-address-space-base"; import type { DataType } from "node-opcua-variant"; // ----- this file has been automatically generated - do not edit /** * | | | * |----------------|------------------------------------------------------------| * |namespace |http://opcfoundation.org/UA/ | * |nodeClass |ObjectType | * |typedDefinition |ProvisionableDeviceType i=26871 | * |isAbstract |false | */ export interface UAProvisionableDevice_Base { isSingleton: UAProperty<boolean, DataType.Boolean>; requestTickets: UAMethod; setRegistrarEndpoints?: UAMethod; // PlaceHolder for $ApplicationName$ } export interface UAProvisionableDevice extends UAObject, UAProvisionableDevice_Base {}