package js.html;
/**
This WebVR API interface represents the state of a VR sensor at a given timestamp (which includes orientation, position, velocity, and acceleration information.)
**/
typedef IVRPose = {
final angularAcceleration : Null;
final angularVelocity : Null;
final linearAcceleration : Null;
final linearVelocity : Null;
final orientation : Null;
final position : Null;
final timestamp : Float;
};