import { type Path } from "https://deno.land/x/rimbu@1.0.2/deep/internal.ts";
const { Get } = Path;
A string representing a path into an (nested) object of type T.
Examples
Example 1
Example 1
const p: Path.Get<{ a: { b: { c : 5 } } }> = 'a.b'
definition: Path.Internal.Generic<T, false, false, true>