UNPKG

@opcua/for-node-red

Version:

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

11 lines (10 loc) 641 B
export type NodesetName = "standard" | "di" | "amb" | "adi" | "autoId" | "commercialKitchenEquipment" | "cnc" | "gds" | "glass" | "ia" | "iolink" | "iolinkIODD" | "ijtBase" | "irdi" | "isa95JobControl" | "machineryJobs" | "machinery" | "machineryProcessValues" | "machineryResult" | "machineTool" | "machineVision" | "metalForming" | "packML" | "padim" | "robotics" | "scales" | "tightening" | "woodWorking"; export type NodesetMeta = { name: NodesetName; packageName: string; uri: string; xmlFile: string; dependencies: NodesetName[]; licence?: "DUAL" | "MIT"; }; export declare const nodesetCatalog: NodesetMeta[];