UNPKG

501 BTypeScriptView Raw
1import type { IOptionsColor } from "./IOptionsColor";
2import type { IColorAnimation } from "./IColorAnimation";
3import type { IHslAnimation } from "./IHslAnimation";
4/**
5 * The animatable color interface, it provides all the necessary properties to create a color animation
6 * [[include:Options/Particles/Color.md]]
7 * @category Options
8 */
9export interface IAnimatableColor extends IOptionsColor {
10 /**
11 * The color animation property
12 */
13 animation: IColorAnimation | IHslAnimation;
14}