import { DT3DFrame } from "./dt_3_d_frame"; import { DT3DCartesianCoordinates } from "./dt_3_d_cartesian_coordinates"; import { DT3DOrientation } from "./dt_3_d_orientation"; import { UAFrame, UAFrame_Base } from "./ua_frame"; import { UACartesianCoordinates } from "./ua_cartesian_coordinates"; import { UAOrientation } from "./ua_orientation"; /** * | | | * |----------------|------------------------------------------------------------| * |namespace |http://opcfoundation.org/UA/ | * |nodeClass |VariableType | * |typedDefinition |3DFrameType i=18791 | * |dataType |ExtensionObject | * |dataType Name |DT3DFrame i=18814 | * |value rank |-1 | * |isAbstract |false | */ export interface UA3DFrame_Base extends UAFrame_Base { cartesianCoordinates: UACartesianCoordinates; orientation: UAOrientation; } export interface UA3DFrame extends Omit, "cartesianCoordinates" | "orientation">, UA3DFrame_Base { }