import { type Deep } from "https://deno.land/x/rimbu@0.13.5/deep/index.ts";
const { Get } = Deep.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>