tsparticles-fireworks
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) • 600 B
TypeScript
import { type IOptionLoader, type RangeValue, type RecursivePartial, type SingleOrMultiple } from "tsparticles-engine";
import type { IFireworkOptions } from "./IFireworkOptions";
export declare class FireworkOptions implements IFireworkOptions, IOptionLoader<IFireworkOptions> {
brightness: RangeValue;
colors: SingleOrMultiple<string>;
gravity: RangeValue;
minHeight: RangeValue;
rate: RangeValue;
saturation: RangeValue;
sounds: boolean;
speed: RangeValue;
splitCount: RangeValue;
constructor();
load(data?: RecursivePartial<IFireworkOptions>): void;
}