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) • 321 B
TypeScript
import type { HoverMode } from "../../../../Enums/Modes/HoverMode";
import type { IParallax } from "./IParallax";
import type { IOptionLoader } from "../../IOptionLoader";
export interface IHoverEvent extends IOptionLoader<IHoverEvent> {
enable: boolean;
mode: HoverMode | HoverMode[];
parallax: IParallax;
}