package js.html;
/**
This Gamepad API interface represents the pose of a WebVR controller at a given timestamp (which includes orientation, position, velocity, and acceleration information.)
**/
@:native("GamepadPose") extern class GamepadPose {
function new();
final angularAcceleration : Null;
final angularVelocity : Null;
final hasOrientation : Bool;
final hasPosition : Bool;
final linearAcceleration : Null;
final linearVelocity : Null;
final orientation : Null;
final position : Null;
static var prototype : GamepadPose;
}