UNPKG

@opcua/for-node-red

Version:

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

19 lines (18 loc) 928 B
import type { ExtensionObject } from "node-opcua-extension-object"; import type { DT3DCartesianCoordinates } from "./dt_3_d_cartesian_coordinates"; import type { DT3DOrientation } from "./dt_3_d_orientation"; import type { DTFrame } from "./dt_frame"; /** * | | | * |-----------|------------------------------------------------------------| * | namespace |http://opcfoundation.org/UA/ | * | nodeClass |DataType | * | name |3DFrame | * | isAbstract|false | */ export interface DT3DFrame extends DTFrame { cartesianCoordinates: DT3DCartesianCoordinates; orientation: DT3DOrientation; } export interface UDT3DFrame extends ExtensionObject, DT3DFrame { }