Skip to main content
Module

x/valibot/mod.ts>NotValueValidation

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

Not value validation type.

Type Parameters

TInput extends
| string
| number
| bigint
| boolean
| Date
TRequirement extends TInput
definition: BaseValidation<TInput> & { type: "not_value"; requirement: TRequirement; }