import type { IParticleValueAnimation } from "./IParticleValueAnimation"; import type { GradientType } from "../../Enums"; import type { IParticleGradientColorAnimation } from "./IParticleGradientColorAnimation"; export interface IParticleGradientAnimation { angle: IParticleValueAnimation; type: GradientType; colors: IParticleGradientColorAnimation[]; }