Skip to main content
Deno 2 is finally here 🎉️
Learn more
Module

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

Deno-powered framework for building business web apps
Go to Latest
type alias Path
import { type Path } from "https://deno.land/x/netzo@0.3.91/deps/react-hook-form.ts";

Type which eagerly collects all paths through a type

Examples

Example 1

Path<{foo: {bar: string}}> = 'foo' | 'foo.bar'
definition: T extends any ? PathInternal<T> : never