tsparticles
Version:
Porting of the abandoned Vincent Garreau's particles.js, converted in TypeScript. Added many new cool features and various bug fixes.
12 lines (11 loc) • 548 B
TypeScript
import type { IHoverEvent } from "../../../../Interfaces/Options/Interactivity/Events/IHoverEvent";
import { HoverMode } from "../../../../Enums/Modes/HoverMode";
import type { IParallax } from "../../../../Interfaces/Options/Interactivity/Events/IParallax";
import type { RecursivePartial } from "../../../../Types/RecursivePartial";
export declare class HoverEvent implements IHoverEvent {
enable: boolean;
mode: HoverMode | HoverMode[];
parallax: IParallax;
constructor();
load(data?: RecursivePartial<IHoverEvent>): void;
}