UNPKG

tsparticles

Version:

Porting of the abandoned Vincent Garreau's particles.js, converted in TypeScript. Added many new cool features and various bug fixes.

10 lines (9 loc) 427 B
import type { IClickEvent } from "../../../../Interfaces/Options/Interactivity/Events/IClickEvent"; import { ClickMode } from "../../../../Enums/Modes/ClickMode"; import type { RecursivePartial } from "../../../../Types/RecursivePartial"; export declare class ClickEvent implements IClickEvent { enable: boolean; mode: ClickMode | ClickMode[]; constructor(); load(data?: RecursivePartial<IClickEvent>): void; }