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

x/valibot/src/index.ts>NotValueValidation

The modular and type safe schema library for validating structural data 🤖
Go to Latest
type alias NotValueValidation
import { type NotValueValidation } from "https://deno.land/x/valibot@v0.24.0/src/index.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; }