@opcua/for-node-red
Version:
The Node-RED node to communicate via OPC UA, powered NodeOPCUA and developed by Sterfive's team
21 lines (20 loc) • 1.16 kB
TypeScript
import type { LocalizedText } from "node-opcua-data-model";
import type { UALimitAlarm, UALimitAlarm_Base } from "./ua_limit_alarm";
import type { UATwoStateVariable } from "./ua_two_state_variable";
/**
* | | |
* |----------------|------------------------------------------------------------|
* |namespace |http://opcfoundation.org/UA/ |
* |nodeClass |ObjectType |
* |typedDefinition |NonExclusiveLimitAlarmType i=9906 |
* |isAbstract |false |
*/
export interface UANonExclusiveLimitAlarm_Base extends UALimitAlarm_Base {
activeState: UATwoStateVariable<LocalizedText>;
highHighState?: UATwoStateVariable<LocalizedText>;
highState?: UATwoStateVariable<LocalizedText>;
lowState?: UATwoStateVariable<LocalizedText>;
lowLowState?: UATwoStateVariable<LocalizedText>;
}
export interface UANonExclusiveLimitAlarm extends Omit<UALimitAlarm, "activeState">, UANonExclusiveLimitAlarm_Base {
}