We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
DeepPartial
1 parent 35e3b8c commit 976b03fCopy full SHA for 976b03f
src/runtime/types/utils.d.ts
@@ -7,7 +7,7 @@ export interface TightMap<O = any> {
7
export type DeepPartial<T, O = any> = {
8
[P in keyof T]?: T[P] extends object
9
? DeepPartial<T[P], O>
10
- : T[P];
+ : T[P] extends string ? string : T[P];
11
} & {
12
[key: string]: O | TightMap<O>
13
}
0 commit comments