mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-21 15:31:46 +01:00
chore(templates): move DeepPartial to runtime types
chore(templates): up
This commit is contained in:
3
src/runtime/types/utils.d.ts
vendored
Normal file
3
src/runtime/types/utils.d.ts
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
export type DeepPartial<T> = Partial<{
|
||||
[P in keyof T]: DeepPartial<T[P]> | { [key: string]: string | object }
|
||||
}>
|
||||
Reference in New Issue
Block a user