declare module "love.graphics" {
  /**
   * The layout of matrix elements (row-major or column-major).
   * @link [MatrixLayout](https://love2d.org/wiki/MatrixLayout)
   */
  type MatrixLayout = "row" | "column";
}
