declare module "love.joystick" {
  /**
   * Types of Joystick inputs.
   * @link [JoystickInputType](https://love2d.org/wiki/JoystickInputType)
   */
  type JoystickInputType = "axis" | "button" | "hat";
}
