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