tsparticles
Version:
Easily create highly customizable particle animations and use them as animated backgrounds for your website. Ready to use components available also for React, Vue.js (2.x and 3.x), Angular, Svelte, jQuery, Preact, Riot.js, Inferno.
16 lines (15 loc) • 700 B
TypeScript
import { IDivEvent } from "../../../Interfaces/Interactivity/Events/IDivEvent";
import { DivMode, DivType } from "../../../../Enums";
import { RecursivePartial, SingleOrMultiple } from "../../../../Types";
import { IOptionLoader } from "../../../Interfaces/IOptionLoader";
export declare class DivEvent implements IDivEvent, IOptionLoader<IDivEvent> {
elementId: SingleOrMultiple<string>;
el: SingleOrMultiple<string>;
ids: SingleOrMultiple<string>;
selectors: SingleOrMultiple<string>;
enable: boolean;
mode: SingleOrMultiple<DivMode | keyof typeof DivMode | string>;
type: DivType;
constructor();
load(data?: RecursivePartial<IDivEvent>): void;
}