Appearance
aninest / AnimatableTypes / RecursiveAnimatable
type RecursiveAnimatable<T>: { [P in keyof T]: T[P] extends number ? number : RecursiveAnimatable<T[P]> };
The generic type of the animation state.
• T
{ a: {x: 0, y: 0}, b: {x: 0, y: 0} }
Animate/AnimatableTypes.ts:49