declare module "love.graphics" {
  /**
   * Types of textures (2D, cubemap, etc.)
   * @link [TextureType](https://love2d.org/wiki/TextureType)
   */
  type TextureType = "2d" | "array" | "cube" | "volume";
}
