Skip to main content
Module

x/pup/deps.ts>z.ZodNumberCheck

Universal process manager built in Deno
Go to Latest
type alias z.ZodNumberCheck
import { type z } from "https://deno.land/x/pup@1.0.0-beta.9/deps.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; }