Skip to main content
The Deno 2 Release Candidate is here
Learn more
Module

x/nosdump/deps.ts>z.ZodNumberCheck

A command line tool which dumps events stored in Nostr relays
Go to Latest
type alias z.ZodNumberCheck
import { type z } from "https://deno.land/x/nosdump@0.4.4/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; }