tsparticles
Version:
Porting of the abandoned Vincent Garreau's particles.js, converted in TypeScript. Added many new cool features and various bug fixes.
14 lines (13 loc) • 433 B
TypeScript
import type { IClickEvent } from "./IClickEvent";
import type { IHoverEvent } from "./IHoverEvent";
import type { IDivEvent } from "./IDivEvent";
import type { IOptionLoader } from "../../IOptionLoader";
export interface IEvents extends IOptionLoader<IEvents> {
onclick: IClickEvent;
onhover: IHoverEvent;
ondiv: IDivEvent;
onClick: IClickEvent;
onHover: IHoverEvent;
onDiv: IDivEvent;
resize: boolean;
}