@alanscodelog/utils
Github
Issues
npm
Preparing search index...
types
DeepPartial
Type Alias DeepPartial<T>
DeepPartial
:
{
[
P
in
keyof
T
]
?:
T
[
P
]
extends
(
infer
U
)
[]
?
DeepPartial
<
U
>
[]
:
T
[
P
]
extends
object
?
DeepPartial
<
T
[
P
]
>
:
T
[
P
]
}
Like
Partial
but deep.
Type Parameters
T
Settings
Member Visibility
Protected
Inherited
Theme
OS
Light
Dark
Github
Issues
npm
@alanscodelog/utils
Loading...
Like
Partial
but deep.