declare module "love.graphics" {
  /**
   * Different types of arcs that can be drawn.
   * @link [ArcType](https://love2d.org/wiki/ArcType)
   */
  type ArcType = "pie" | "open" | "closed";
}
