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