@opcua/for-node-red
Version:
The Node-RED node to communicate via OPC UA, powered NodeOPCUA and developed by Sterfive's team
19 lines (18 loc) • 1.08 kB
TypeScript
import type { LocalizedText } from "node-opcua-data-model";
import type { UAExclusiveLimitStateMachine } from "./ua_exclusive_limit_state_machine";
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 |ExclusiveLimitAlarmType i=9341 |
* |isAbstract |false |
*/
export interface UAExclusiveLimitAlarm_Base extends UALimitAlarm_Base {
activeState: UATwoStateVariable<LocalizedText>;
limitState: UAExclusiveLimitStateMachine;
}
export interface UAExclusiveLimitAlarm extends Omit<UALimitAlarm, "activeState">, UAExclusiveLimitAlarm_Base {
}