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) • 501 B
TypeScript
import type { IColorAnimation } from "./IColorAnimation";
import type { IHslAnimation } from "./IHslAnimation";
import type { IOptionsColor } from "./IOptionsColor";
/**
* The animatable color interface, it provides all the necessary properties to create a color animation
* [[include:Options/Particles/Color.md]]
* @category Options
*/
export interface IAnimatableColor extends IOptionsColor {
/**
* The color animation property
*/
animation: IColorAnimation | IHslAnimation;
}