tsparticles
Version:
Easily create highly customizable particle, confetti and fireworks 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.
21 lines (20 loc) • 823 B
TypeScript
import type { RecursivePartial, SingleOrMultiple } from "../../../../Types";
import type { IOptionLoader } from "../../../Interfaces/IOptionLoader";
import type { IRepulseDiv } from "../../../Interfaces/Interactivity/Modes/IRepulseDiv";
import { RepulseBase } from "./RepulseBase";
/**
* @category Options
*/
export declare class RepulseDiv extends RepulseBase implements IRepulseDiv, IOptionLoader<IRepulseDiv> {
/**
* @deprecated This property is deprecated, please use the new selectors property
*/
get ids(): SingleOrMultiple<string>;
/**
* @deprecated This property is deprecated, please use the new selectors property
*/
set ids(value: SingleOrMultiple<string>);
selectors: SingleOrMultiple<string>;
constructor();
load(data?: RecursivePartial<IRepulseDiv>): void;
}