Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

Path

Type which eagerly collects all paths through a type

@example
Path<{foo: {bar: string}}> = 'foo' | 'foo.bar'
type Path<T> = T extends any ? PathInternal<T> : never;

§Type Parameters

§Type

§
T extends any ? PathInternal<T> : never
[src]