UNPKG

@opcua/for-node-red

Version:

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

28 lines (27 loc) 1.39 kB
import type { UAString } from "node-opcua-basic-types"; import type { ExtensionObject } from "node-opcua-extension-object"; import type { Variant } from "node-opcua-variant"; import type { DTDataTypeSchemaHeader } from "./dt_data_type_schema_header"; import type { DTEnumDescription } from "./dt_enum_description"; import type { DTKeyValuePair } from "./dt_key_value_pair"; import type { DTSimpleTypeDescription } from "./dt_simple_type_description"; import type { DTStructureDescription } from "./dt_structure_description"; /** * | | | * |-----------|------------------------------------------------------------| * | namespace |http://opcfoundation.org/UA/ | * | nodeClass |DataType | * | name |UABinaryFileDataType | * | isAbstract|false | */ export interface DTUABinaryFile extends DTDataTypeSchemaHeader { namespaces: UAString[]; structureDataTypes: DTStructureDescription[]; enumDataTypes: DTEnumDescription[]; simpleDataTypes: DTSimpleTypeDescription[]; schemaLocation: UAString; fileHeader: DTKeyValuePair[]; body: Variant; } export interface UDTUABinaryFile extends ExtensionObject, DTUABinaryFile { }