import { AnimationCurveJson } from '@easytwin/runtime'; export type ParticleSystemBaseInputType = { type: 'ConstantValue' | 'IntervalValue' | 'AnimationCurve'; ConstantValue: { value: number; }; IntervalValue?: { a: number; b: number; }; AnimationCurve?: { value: AnimationCurveJson; }; };