@opcua/for-node-red
Version:
The Node-RED node to communicate via OPC UA, powered NodeOPCUA and developed by Sterfive's team
25 lines (22 loc) • 1.48 kB
text/typescript
import type { UAProperty } from "node-opcua-address-space-base";
import type { DataType } from "node-opcua-variant";
import type { DTBitFieldDefinition } from "./dt_bit_field_definition";
import type { UABaseDataVariable, UABaseDataVariable_Base } from "./ua_base_data_variable";
// ----- this file has been automatically generated - do not edit
/**
* | | |
* |----------------|------------------------------------------------------------|
* |namespace |http://opcfoundation.org/UA/ |
* |nodeClass |VariableType |
* |typedDefinition |BitFieldType i=32431 |
* |dataType |Variant |
* |dataType Name |number i=28 |
* |value rank |-1 |
* |isAbstract |true |
*/
export interface UABitField_Base<T, DT extends DataType> extends UABaseDataVariable_Base<T, DT> {
bitFieldsDefinitions: UAProperty<DTBitFieldDefinition[], DataType.ExtensionObject>;
// PlaceHolder for $FieldName$
// PlaceHolder for $OptionalFieldName$
}
export interface UABitField<T, DT extends DataType> extends UABaseDataVariable<T, DT>, UABitField_Base<T, DT> {}