tsparticles
Version:
Easily create highly customizable particle animations and use them as animated backgrounds for your website. Ready to use components available also for React, Vue.js (2.x and 3.x), Angular, Svelte, jQuery, Preact, Riot.js, Inferno.
12 lines (11 loc) • 480 B
TypeScript
import { Particle } from "../../Core/Particle";
import type { Container } from "../../Core/Container";
import { IParticlesInteractor } from "../../Core/Interfaces/IParticlesInteractor";
import { IParticle } from "../../Core/Interfaces/IParticle";
export declare class Linker implements IParticlesInteractor {
private readonly container;
constructor(container: Container);
isEnabled(particle: Particle): boolean;
reset(): void;
interact(p1: IParticle): void;
}