declare module "love.physics" {
  /**
   * The different types of Shapes, as returned by Shape:getType.
   * @link [ShapeType](https://love2d.org/wiki/ShapeType)
   */
  type ShapeType = "circle" | "polygon" | "edge" | "chain";
}
