Skip to main content
Module

x/zod/mod.ts>z.ZodNumberCheck

TypeScript-first schema validation with static type inference
Very Popular
Go to Latest
type alias z.ZodNumberCheck
import { type z } from "https://deno.land/x/zod@v3.20.0/mod.ts";
const { ZodNumberCheck } = z;
definition:
| { kind: "min"; value: number; inclusive: boolean; message?: string; }
| { kind: "max"; value: number; inclusive: boolean; message?: string; }
| { kind: "int"; message?: string; }
| { kind: "multipleOf"; value: number; message?: string; }
| { kind: "finite"; message?: string; }