Skip to main content
Module

x/valibot/mod.ts>ExcludesValidation

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

Excludes validation type.

Type Parameters

TInput extends string | any[]
TRequirement extends TInput extends any[] ? TInput[number] : TInput
definition: BaseValidation<TInput> & { type: "excludes"; requirement: TRequirement; }