UNPKG

@opcua/for-node-red

Version:

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

13 lines (12 loc) 726 B
import type { UACertificate, UACertificate_Base } from "./ua_certificate"; /** * | | | * |----------------|------------------------------------------------------------| * |namespace |http://opcfoundation.org/UA/ | * |nodeClass |ObjectType | * |typedDefinition |HttpsCertificateType i=12558 | * |isAbstract |false | */ export type UAHttpsCertificate_Base = UACertificate_Base; export interface UAHttpsCertificate extends UACertificate, UAHttpsCertificate_Base { }