Skip to main content
Module

x/valibot/mod.ts>SafeIntegerValidation

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

Safe integer validation type.

Type Parameters

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