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.
14 lines (13 loc) • 459 B
TypeScript
import type { Container } from "../../Core/Container";
import type { IExternalInteractor } from "../../Core/Interfaces/IExternalInteractor";
export declare class Repulser implements IExternalInteractor {
private readonly container;
constructor(container: Container);
isEnabled(): boolean;
reset(): void;
interact(): void;
private singleSelectorRepulse;
private hoverRepulse;
private processRepulse;
private clickRepulse;
}