UNPKG

tsparticles

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.

14 lines (13 loc) 732 B
import { IOpacityAnimation } from "../../../Interfaces/Particles/Opacity/IOpacityAnimation"; import { RecursivePartial } from "../../../../Types"; import { IOptionLoader } from "../../../Interfaces/IOptionLoader"; import { DestroyType, StartValueType } from "../../../../Enums/Types"; import { AnimationOptions } from "../../AnimationOptions"; export declare class OpacityAnimation extends AnimationOptions implements IOpacityAnimation, IOptionLoader<IOpacityAnimation> { opacity_min: number; destroy: DestroyType | keyof typeof DestroyType; minimumValue: number; startValue: StartValueType | keyof typeof StartValueType; constructor(); load(data?: RecursivePartial<IOpacityAnimation>): void; }