We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3456b5f commit 1abcdf9Copy full SHA for 1abcdf9
packages/translations/src/types.ts
@@ -79,7 +79,7 @@ export type NestedKeysStripped<T> = T extends object
79
? {
80
[K in keyof T]-?: K extends string
81
? T[K] extends object
82
- ? `${K}:${StripCountVariants<NestedKeysStripped<T[K]>>}` | null
+ ? `${K}:${NestedKeysStripped<T[K]>}`
83
: `${StripCountVariants<K>}`
84
: never
85
}[keyof T]
0 commit comments