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.

25 lines (24 loc) 721 B
import type { IOptionLoader } from "../../../Interfaces/IOptionLoader"; import type { IPush } from "../../../Interfaces/Interactivity/Modes/IPush"; import type { RecursivePartial } from "../../../../Types"; /** * @category Options */ export declare class Push implements IPush, IOptionLoader<IPush> { /** * * @deprecated this property is obsolete, please use the new quantity */ get particles_nb(): number; /** * * @deprecated this property is obsolete, please use the new quantity * @param value */ set particles_nb(value: number); default: boolean; groups: string[]; quantity: number; constructor(); load(data?: RecursivePartial<IPush>): void; }