tsparticles
Version:
Porting of the abandoned Vincent Garreau's particles.js, converted in TypeScript. Added many new cool features and various bug fixes.
10 lines (9 loc) • 368 B
TypeScript
import type { IPush } from "../../../../Interfaces/Options/Interactivity/Modes/IPush";
import type { RecursivePartial } from "../../../../Types/RecursivePartial";
export declare class Push implements IPush {
get particles_nb(): number;
set particles_nb(value: number);
quantity: number;
constructor();
load(data?: RecursivePartial<IPush>): void;
}