type DeepValue<TValue, TAccessor> = unknown extends TValue ? TValue : TAccessor extends DeepKeys<TValue> ? DeepValueImpl<TValue, TAccessor> : never;Defined in: deep-keys.public.ts:215
Infer the type of a deeply nested property within an object or an array.
TValue
TAccessor extends string