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.
25 lines (24 loc) • 717 B
TypeScript
import type { IDensity } from "../../../Interfaces/Particles/Number/IDensity";
import type { IOptionLoader } from "../../../Interfaces/IOptionLoader";
import type { RecursivePartial } from "../../../../Types";
/**
* @category Options
*/
export declare class Density implements IDensity, IOptionLoader<IDensity> {
/**
*
* @deprecated this property is obsolete, please use the new area
*/
get value_area(): number;
/**
*
* @deprecated this property is obsolete, please use the new area
* @param value
*/
set value_area(value: number);
area: number;
enable: boolean;
factor: number;
constructor();
load(data?: RecursivePartial<IDensity>): void;
}