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) 265 B
import type { Container } from "../Container"; import type { Particle } from "../Particle"; export declare class Grabber { private readonly container; private readonly particle; constructor(container: Container, particle: Particle); grab(): void; }