Fix last bugs before relasing v2

This commit is contained in:
garronej
2021-06-28 05:30:09 +02:00
parent 82e7a7edae
commit 88a4c97428
4 changed files with 6 additions and 43 deletions

View File

@ -0,0 +1,4 @@
export type DeepPartial<T> = {
[P in keyof T]?: DeepPartial<T[P]>;
};