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