@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) • 811 B
TypeScript
import type { UABaseConditionClass, UABaseConditionClass_Base } from "./ua_base_condition_class";
/**
* | | |
* |----------------|------------------------------------------------------------|
* |namespace |http://opcfoundation.org/UA/ |
* |nodeClass |ObjectType |
* |typedDefinition |HighlyManagedAlarmConditionClassType i=17219 |
* |isAbstract |true |
*/
export type UAHighlyManagedAlarmConditionClass_Base = UABaseConditionClass_Base;
export interface UAHighlyManagedAlarmConditionClass extends UABaseConditionClass, UAHighlyManagedAlarmConditionClass_Base {
}