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