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.

17 lines (16 loc) 455 B
/** * The particles emitter rate options * @category Emitters Plugin */ import type { RangeValue } from "../../../../Types"; export interface IEmitterRate { /** * The emitting velocity, how many seconds will pass between the next particles creation * Decimal values allowed */ delay: RangeValue; /** * The emitting quantity, how many particles will be created at every creation event */ quantity: RangeValue; }