@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.51 kB
TypeScript
import type { UAProperty } from "node-opcua-address-space-base";
import type { NodeId } from "node-opcua-nodeid";
import type { DataType } from "node-opcua-variant";
import type { UAMultiStateDictionaryEntryDiscreteBase, UAMultiStateDictionaryEntryDiscreteBase_Base } from "./ua_multi_state_dictionary_entry_discrete_base";
/**
* | | |
* |----------------|------------------------------------------------------------|
* |namespace |http://opcfoundation.org/UA/ |
* |nodeClass |VariableType |
* |typedDefinition |MultiStateDictionaryEntryDiscreteType i=19084 |
* |dataType |Variant |
* |dataType Name |number i=26 |
* |value rank |-1 |
* |isAbstract |false |
*/
export interface UAMultiStateDictionaryEntryDiscrete_Base<T, DT extends DataType> extends UAMultiStateDictionaryEntryDiscreteBase_Base<T, DT> {
valueAsDictionaryEntries: UAProperty<NodeId[], DataType.NodeId>;
}
export interface UAMultiStateDictionaryEntryDiscrete<T, DT extends DataType> extends Omit<UAMultiStateDictionaryEntryDiscreteBase<T, DT>, "valueAsDictionaryEntries">, UAMultiStateDictionaryEntryDiscrete_Base<T, DT> {
}