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

x/valibot/mod.ts>PathList

The modular and type safe schema library for validating structural data 🤖
Extremely Popular
Go to Latest
type alias PathList
Re-export
import { type PathList } from "https://deno.land/x/valibot@v0.30.0/mod.ts";

Path list type.

Type Parameters

TInput extends unknown[] | Record<string, unknown>
definition: TInput extends any[] ? PathTuple<TInput, number> : PathTuple<TInput, keyof TInput>