declare module "love.graphics" {
  /**
   * Graphics state stack types used with love.graphics.push.
   * @link [StackType](https://love2d.org/wiki/StackType)
   */
  type StackType = "transform" | "all";
}
