Preparing search index...
The search index is not available
@odata/client
@odata/client
DeepPartial
Type alias DeepPartial<T>
Deep
Partial
<
T
>
:
{
[
P
in
keyof
T
]
?:
T
[
P
]
extends
(
infer
U
)
[]
?
DeepPartial
<
U
>
[]
:
T
[
P
]
extends
ReadonlyArray
<
infer
U
>
?
ReadonlyArray
<
DeepPartial
<
U
>
>
:
DeepPartial
<
T
[
P
]
>
}
Same as Partial
but goes deeper and makes Partial
all its properties and sub-properties.
Type Parameters
T
Settings
Member Visibility
Protected
Private
Inherited
External
Theme
OS
Light
Dark
@odata/client
Loading...
Same as Partial but goes deeper and makes Partial all its properties and sub-properties.