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) 986 B
import type { UAObject } from "node-opcua-address-space-base"; import type { UAFolder } from "./ua_folder"; import type { UALldpLocalSystem } from "./ua_lldp_local_system"; import type { UALldpRemoteStatistics } from "./ua_lldp_remote_statistics"; /** * | | | * |----------------|------------------------------------------------------------| * |namespace |http://opcfoundation.org/UA/ | * |nodeClass |ObjectType | * |typedDefinition |LldpInformationType i=18973 | * |isAbstract |false | */ export interface UALldpInformation_Base { remoteStatistics?: UALldpRemoteStatistics; localSystemData: UALldpLocalSystem; ports: UAFolder; } export interface UALldpInformation extends UAObject, UALldpInformation_Base { }