UNPKG

302 BTypeScriptView Raw
1import type { IParticleHslAnimation } from "./IParticleHslAnimation";
2import type { IParticleNumericValueAnimation } from "./IParticleValueAnimation";
3export interface IParticleGradientColorAnimation {
4 stop: number;
5 value: IParticleHslAnimation;
6 opacity?: IParticleNumericValueAnimation;
7}