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) • 339 B
TypeScript
import type { Particle } from "../Particle";
import type { Container } from "../Container";
export declare class Mover {
private readonly container;
private readonly particle;
constructor(container: Container, particle: Particle);
move(delta: number): void;
private moveParallax;
private getProximitySpeedFactor;
}