import type { IClickEvent } from "./IClickEvent.js"; import type { IDivEvent } from "./IDivEvent.js"; import type { IHoverEvent } from "./IHoverEvent.js"; import type { SingleOrMultiple } from "@tsparticles/engine"; export interface IEvents { onClick: IClickEvent; onDiv: SingleOrMultiple; onHover: IHoverEvent; }