UNPKG

237 BTypeScriptView Raw
1import type { IParticleValueAnimation } from "./IParticleValueAnimation";
2export interface IParticleHslAnimation {
3 h: IParticleValueAnimation<number>;
4 s: IParticleValueAnimation<number>;
5 l: IParticleValueAnimation<number>;
6}