File tree Expand file tree Collapse file tree 1 file changed +5
-11
lines changed Expand file tree Collapse file tree 1 file changed +5
-11
lines changed Original file line number Diff line number Diff line change @@ -109,17 +109,11 @@ export type DeepKeyAndValueObject<
109109 TAcc ,
110110 TAllKeys extends AllObjectKeys < T > = AllObjectKeys < T > ,
111111> = TAllKeys extends any
112- ? string extends TAllKeys
113- ? DeepKeysAndValuesImpl <
114- NonNullable < T [ TAllKeys ] > ,
115- ObjectDeepKeyAndValue < TParent , T , TAllKeys > ,
116- TAcc | ObjectDeepKeyAndValue < TParent , T , TAllKeys >
117- >
118- : DeepKeysAndValuesImpl <
119- NonNullable < T [ TAllKeys ] > ,
120- ObjectDeepKeyAndValue < TParent , T , TAllKeys > ,
121- TAcc | ObjectDeepKeyAndValue < TParent , T , TAllKeys >
122- >
112+ ? DeepKeysAndValuesImpl <
113+ NonNullable < T [ TAllKeys ] > ,
114+ ObjectDeepKeyAndValue < TParent , T , TAllKeys > ,
115+ TAcc | ObjectDeepKeyAndValue < TParent , T , TAllKeys >
116+ >
123117 : never
124118
125119export type UnknownAccessor < TParent extends AnyDeepKeyAndValue > =
You can’t perform that action at this time.
0 commit comments