import { UAProperty } from "node-opcua-address-space-base"; import { DataType } from "node-opcua-variant"; import { NodeId } from "node-opcua-nodeid"; import { DTFrame } from "./dt_frame"; import { DTCartesianCoordinates } from "./dt_cartesian_coordinates"; import { DTOrientation } from "./dt_orientation"; import { UABaseDataVariable, UABaseDataVariable_Base } from "./ua_base_data_variable"; import { UACartesianCoordinates } from "./ua_cartesian_coordinates"; import { UAOrientation } from "./ua_orientation"; /** * | | | * |----------------|------------------------------------------------------------| * |namespace |http://opcfoundation.org/UA/ | * |nodeClass |VariableType | * |typedDefinition |FrameType i=18786 | * |dataType |ExtensionObject | * |dataType Name |DTFrame i=18813 | * |value rank |-1 | * |isAbstract |true | */ export interface UAFrame_Base extends UABaseDataVariable_Base { cartesianCoordinates: UACartesianCoordinates; orientation: UAOrientation; constant?: UAProperty; baseFrame?: UABaseDataVariable; fixedBase?: UAProperty; } export interface UAFrame extends UABaseDataVariable, UAFrame_Base { }