UNPKG
@nsmp/js-api
Version:
latest (3.2.2)
3.2.2
3.2.1
3.2.0
3.1.0
3.0.0
2.0.0
1.0.1
1.0.0
Types for jsApi
@nsmp/js-api
/
src
/
types
/
utils.d.ts
4 lines
(3 loc)
•
92 B
TypeScript
View Raw
1
2
3
4
export type DeepPartial
<
T
>
=
T
extends object
?
{
[
P
in
keyof
T
]
?
:
DeepPartial
<
T
[
P
]
>
}
:
T
;