@opcua/for-node-red
Version:
The Node-RED node to communicate via OPC UA, powered NodeOPCUA and developed by Sterfive's team
18 lines (17 loc) • 940 B
TypeScript
import type { UACertificateGroup } from "./ua_certificate_group";
import type { UAFolder, UAFolder_Base } from "./ua_folder";
/**
* | | |
* |----------------|------------------------------------------------------------|
* |namespace |http://opcfoundation.org/UA/ |
* |nodeClass |ObjectType |
* |typedDefinition |CertificateGroupFolderType i=13813 |
* |isAbstract |false |
*/
export interface UACertificateGroupFolder_Base extends UAFolder_Base {
defaultApplicationGroup: UACertificateGroup;
defaultHttpsGroup?: UACertificateGroup;
defaultUserTokenGroup?: UACertificateGroup;
}
export interface UACertificateGroupFolder extends UAFolder, UACertificateGroupFolder_Base {
}