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.
12 lines (11 loc) • 625 B
TypeScript
import { IAnimatableColor } from "../Interfaces/IAnimatableColor";
import { OptionsColor } from "./OptionsColor";
import { RecursivePartial } from "../../Types";
import { IOptionLoader } from "../Interfaces/IOptionLoader";
import { HslAnimation } from "./HslAnimation";
export declare class AnimatableColor extends OptionsColor implements IAnimatableColor, IOptionLoader<IAnimatableColor> {
animation: HslAnimation;
constructor();
static create(source?: AnimatableColor, data?: string | RecursivePartial<IAnimatableColor>): AnimatableColor;
load(data?: RecursivePartial<IAnimatableColor>): void;
}