- Preparing search index...
- The search index is not available
webtopics
Type alias RecursivePartial<T>
Recursive
Partial
<T>: T extends Primitive<infer U
> ? T | undefined : T extends object ? { [ K in keyof T]?: RecursivePartial<T[K]> } | undefined : never
Makes all properties of the type optional recursively