Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

ZodBigIntCheck

import type { ZodBigIntCheck } from "https://esm.sh/zod@3.25.76/index.d.cts";
type ZodBigIntCheck = {
kind: "min";
value: bigint;
inclusive: boolean;
message?: string | undefined;
}
| {
kind: "max";
value: bigint;
inclusive: boolean;
message?: string | undefined;
}
| {
kind: "multipleOf";
value: bigint;
message?: string | undefined;
}
;

§Type

§
{
kind: "min";
value: bigint;
inclusive: boolean;
message?: string | undefined;
}
| {
kind: "max";
value: bigint;
inclusive: boolean;
message?: string | undefined;
}
| {
kind: "multipleOf";
value: bigint;
message?: string | undefined;
}
[src]