UNPKG
@hexadrop/types
Version:
beta (2.0.0-beta.4)
latest (2.0.0)
2.0.0
2.0.0-beta.4
2.0.0-beta.3
2.0.0-beta.2
2.0.0-beta.1
2.0.0-beta.0
1.0.3
1.0.2
1.0.1
1.0.0
1.0.0-beta.3
1.0.0-beta.2
1.0.0-beta.1
1.0.0-beta.0
Hexagonal architecture utils library
github.com/hexadrop/hexadrop
hexadrop/hexadrop
@hexadrop/types
/
dist
/
recursive-partial.d.ts
6 lines
(4 loc)
•
112 B
TypeScript
View Raw
1
2
3
4
5
6
type
RecursivePartial<T> = { [P
in
keyof T]?: RecursivePartial<T[P]>; };
export
type
{ RecursivePartial };