Skip to main content
Module

x/valibot/mod.ts>ValueValidation

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

Value validation type.

Type Parameters

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