- Preparing search index...
- The search index is not available
Documentation
Type alias RecursivePartial<T>
Recursive
Partial
<T>: { [ P in keyof T]?: T[P] extends (infer I
)[] ? RecursivePartial<I>[] : T[P] extends ((...args
: any[]) => any) ? T[P] : RecursivePartial<T[P]> }
Returns a new type with all fields marked optional.
Borrowed from the tsdef module.