UNPKG

tsparticles

Version:

Easily create highly customizable particle, confetti and fireworks animations and use them as animated backgrounds for your website. Ready to use components available also for React, Vue.js (2.x and 3.x), Angular, Svelte, jQuery, Preact, Riot.js, Inferno.

15 lines (14 loc) 325 B
import type { IDensity } from "./IDensity"; /** * [[include:Options/Particles/Number.md]] * @category Options */ export interface IParticlesNumber { /** * @deprecated the property max is deprecated, use the new limit instead */ max: number; density: IDensity; limit: number; value: number; }