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