chore(templates): move DeepPartial to runtime types

chore(templates): up
This commit is contained in:
Benjamin Canac
2024-04-02 16:50:25 +02:00
parent ab9fc3eebb
commit f3c690ebd8
2 changed files with 20 additions and 21 deletions

3
src/runtime/types/utils.d.ts vendored Normal file
View File

@@ -0,0 +1,3 @@
export type DeepPartial<T> = Partial<{
[P in keyof T]: DeepPartial<T[P]> | { [key: string]: string | object }
}>