Skip to main content
Module

x/valibot/mod.ts>EveryValidation

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

Every validation type.

Type Parameters

TInput extends any[]
definition: BaseValidation<TInput> & { type: "every"; requirement: (
element: TInput[number],
index: number,
array: TInput[number][],
) => boolean; }