aninest-root / RecursiveHelpers / PartialRecursive
PartialRecursive<Base, Shape>
ts
type PartialRecursive<Base, Shape> = { [P in keyof Shape]?: Shape[P] extends Base ? Shape[P] : PartialRecursive<Base, Shape[P]> };
Defined in: Animate/RecursiveHelpers.ts:68
Contains the same structure as the original object, but with all keys being optional.
Type Parameters
Base
Base
Shape
Shape