mirror of https://github.com/clickscodes/nucleus
parent
a325d264a3
commit
6a0bab5319
@ -1,6 +1,7 @@
|
|||||||
type RecursivePartial<T> = {
|
type RecursivePartial<T> = {
|
||||||
[P in keyof T]?:
|
[P in keyof T]?: T[P] extends (infer U)[]
|
||||||
T[P] extends (infer U)[] ? RecursivePartial<U>[] :
|
? RecursivePartial<U>[]
|
||||||
T[P] extends object ? RecursivePartial<T[P]> :
|
: T[P] extends object
|
||||||
T[P];
|
? RecursivePartial<T[P]>
|
||||||
|
: T[P];
|
||||||
};
|
};
|
||||||
|
|||||||
Loading…
Reference in new issue