UNPKG

tsparticles

Version:

Porting of the abandoned Vincent Garreau's particles.js, converted in TypeScript. Added many new cool features and various bug fixes.

9 lines (8 loc) 255 B
import type { IDensity } from "./IDensity"; import type { IOptionLoader } from "../IOptionLoader"; export interface IParticlesNumber extends IOptionLoader<IParticlesNumber> { density: IDensity; limit: number; max: number; value: number; }