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

ArrayPath

Type which eagerly collects all paths through a type which point to an array type.

@example
Path<{foo: {bar: string[], baz: number[]}}> = 'foo.bar' | 'foo.baz'
type ArrayPath<T> = T extends any ? ArrayPathInternal<T> : never;

§Type Parameters

§Type

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