UNPKG

376 BTypeScriptView Raw
1import type { IParticleValueAnimation } from "./IParticleValueAnimation";
2import type { GradientType } from "../../Enums";
3import type { IParticleGradientColorAnimation } from "./IParticleGradientColorAnimation";
4export interface IParticleGradientAnimation {
5 angle: IParticleValueAnimation<number>;
6 type: GradientType;
7 colors: IParticleGradientColorAnimation[];
8}