declare module "love.graphics" {
  /**
   * Controls whether shapes are drawn as an outline, or filled.
   * @link [DrawMode](https://love2d.org/wiki/DrawMode)
   */
  type DrawMode = "fill" | "line";
}
