type Get<T>
A string representing a path into an (nested) object of type T.
example
const p: Path.Get<{ a: { b: { c : 5 } } }> = 'a.b'
Definition
type Get<T> =
Path.Internal.Generic
<T, false, false, true>;
type Get<T>
A string representing a path into an (nested) object of type T.
const p: Path.Get<{ a: { b: { c : 5 } } }> = 'a.b'
type Get<T> =
Path.Internal.Generic
<T, false, false, true>;