diff --git a/src/runtime/types/utils.d.ts b/src/runtime/types/utils.d.ts index 7d899325..91a64270 100644 --- a/src/runtime/types/utils.d.ts +++ b/src/runtime/types/utils.d.ts @@ -7,5 +7,5 @@ export type NestedKeyOf = { }[keyof ObjectType]; export type DeepPartial = Partial<{ - [P in keyof T]: DeepPartial | { [key: string]: string }; + [P in keyof T]: DeepPartial | { [key: string]: string | object }; }>;