declare module "love.physics" {
  /**
   * The types of a Body.
   * @link [BodyType](https://love2d.org/wiki/BodyType)
   */
  type BodyType = "static" | "dynamic" | "kinematic";
}
