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

z.ZodTooSmallIssue

import type { z } from "https://esm.sh/zod@3.25.76/index.d.cts"; 

const { ZodTooSmallIssue } = z;
interface ZodTooSmallIssue extends ZodIssueBase {
code: ZodIssueCode.too_small;
exact?: boolean;
inclusive: boolean;
minimum: number | bigint;
type:
| "array"
| "string"
| "number"
| "set"
| "date"
| "bigint";
}

§Extends

§Properties

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