Skip to main content
Module

x/valibot/mod.ts>IntegerValidation

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

Integer validation type.

Type Parameters

TInput extends number
definition: BaseValidation<TInput> & { type: "integer"; requirement: (input: TInput) => boolean; }