@opcua/for-node-red
Version:
The Node-RED node to communicate via OPC UA, powered NodeOPCUA and developed by Sterfive's team
23 lines (22 loc) • 1.1 kB
TypeScript
import type { Byte } from "node-opcua-basic-types";
import type { QualifiedName } from "node-opcua-data-model";
import type { ExtensionObject } from "node-opcua-extension-object";
import type { NodeId } from "node-opcua-nodeid";
import type { DTDataTypeDescription } from "./dt_data_type_description";
import type { DTEnumDefinition } from "./dt_enum_definition";
/**
* | | |
* |-----------|------------------------------------------------------------|
* | namespace |http://opcfoundation.org/UA/ |
* | nodeClass |DataType |
* | name |EnumDescription |
* | isAbstract|false |
*/
export interface DTEnumDescription extends DTDataTypeDescription {
dataTypeId: NodeId;
name: QualifiedName;
enumDefinition: DTEnumDefinition;
builtInType: Byte;
}
export interface UDTEnumDescription extends ExtensionObject, DTEnumDescription {
}