Documents for @litert/utils-ts-types
Preparing search index...
IDeepPartial
Type Alias IDeepPartial<T>
IDeepPartial
:
{
[
P
in
keyof
T
]
?:
T
[
P
]
extends
IObject
?
IDeepPartial
<
T
[
P
]
>
:
T
[
P
]
}
Recursively makes all properties of an object type optional.
Type Parameters
T
extends
IObject
Settings
Member Visibility
Protected
Inherited
External
Theme
OS
Light
Dark
Documents for @litert/utils-ts-types
Loading...
Recursively makes all properties of an object type optional.