declare module "love.graphics" {
  /**
   * How newly created particles are added to the ParticleSystem.
   * @link [ParticleInsertMode](https://love2d.org/wiki/ParticleInsertMode)
   */
  type ParticleInsertMode = "top" | "bottom" | "random";
}
