UNPKG

@opcua/for-node-red

Version:

The Node-RED node to communicate via OPC UA, powered NodeOPCUA and developed by Sterfive's team

17 lines (16 loc) 842 B
import type { ExtensionObject } from "node-opcua-extension-object"; import type { DTDataTypeDefinition } from "./dt_data_type_definition"; import type { DTEnumField } from "./dt_enum_field"; /** * | | | * |-----------|------------------------------------------------------------| * | namespace |http://opcfoundation.org/UA/ | * | nodeClass |DataType | * | name |EnumDefinition | * | isAbstract|false | */ export interface DTEnumDefinition extends DTDataTypeDefinition { fields: DTEnumField[]; } export interface UDTEnumDefinition extends ExtensionObject, DTEnumDefinition { }