Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/netzo/deps/react-hook-form.ts>ArrayPath

Full-stack Deno framework for building business web apps like internal tools, dashboards, admin panels and automated workflows.
Go to Latest
type alias ArrayPath
import { type ArrayPath } from "https://deno.land/x/netzo@0.5.14/deps/react-hook-form.ts";

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

Examples

Example 1

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