Skip to main content
Module

x/deno_books/deps.ts>z.ZodNumberCheck

Access OpenLibrary's API with Deno.
Go to Latest
type alias z.ZodNumberCheck
import { type z } from "https://deno.land/x/deno_books@v1.4.0/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; }