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) • 814 B
TypeScript
import type { RecursivePartial, SingleOrMultiple } from "../../../../Types";
import { BubbleBase } from "./BubbleBase";
import type { IBubbleDiv } from "../../../Interfaces/Interactivity/Modes/IBubbleDiv";
import type { IOptionLoader } from "../../../Interfaces/IOptionLoader";
/**
* @category Options
*/
export declare class BubbleDiv extends BubbleBase implements IBubbleDiv, IOptionLoader<IBubbleDiv> {
/**
* @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<IBubbleDiv>): void;
}