UNPKG

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) 768 B
import { DestroyType, StartValueType } from "../../../../Enums"; import { AnimationOptions } from "../../AnimationOptions"; import type { IOptionLoader } from "../../../Interfaces/IOptionLoader"; import type { ISizeAnimation } from "../../../Interfaces/Particles/Size/ISizeAnimation"; import type { RecursivePartial } from "../../../../Types"; export declare class SizeAnimation extends AnimationOptions implements ISizeAnimation, IOptionLoader<ISizeAnimation> { get size_min(): number | undefined; set size_min(value: number | undefined); destroy: DestroyType | keyof typeof DestroyType; minimumValue?: number; startValue: StartValueType | keyof typeof StartValueType; constructor(); load(data?: RecursivePartial<ISizeAnimation>): void; }