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

ZodTooBigIssue

import type { ZodTooBigIssue } from "https://esm.sh/zod@3.25.76/index.d.cts";
interface ZodTooBigIssue extends ZodIssueBase {
code: ZodIssueCode.too_big;
exact?: boolean;
inclusive: boolean;
maximum: number | bigint;
type:
| "array"
| "string"
| "number"
| "set"
| "date"
| "bigint";
}

§Extends

§Properties

§
code: ZodIssueCode.too_big
[src]
§
exact?: boolean
[src]
§
inclusive: boolean
[src]
§
maximum: number | bigint
[src]
§
type: "array" | "string" | "number" | "set" | "date" | "bigint"
[src]