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.
15 lines (14 loc) • 536 B
TypeScript
import type { IEmitterSize } from "../Interfaces/IEmitterSize";
import type { IOptionLoader } from "../../../../Options/Interfaces/IOptionLoader";
import type { RecursivePartial } from "../../../../Types";
import { SizeMode } from "../../../../Enums";
/**
* @category Emitters Plugin
*/
export declare class EmitterSize implements IEmitterSize, IOptionLoader<IEmitterSize> {
mode: SizeMode | keyof typeof SizeMode;
height: number;
width: number;
constructor();
load(data?: RecursivePartial<IEmitterSize>): void;
}