Skip to main content
Module

x/zod/mod.ts>z.ZodStringCheck

TypeScript-first schema validation with static type inference
Extremely Popular
Go to Latest
type alias z.ZodStringCheck
import { type z } from "https://deno.land/x/zod@v3.20.0/mod.ts";
const { ZodStringCheck } = z;
definition:
| { kind: "min"; value: number; message?: string; }
| { kind: "max"; value: number; message?: string; }
| { kind: "email"; message?: string; }
| { kind: "url"; message?: string; }
| { kind: "uuid"; message?: string; }
| { kind: "cuid"; message?: string; }
| { kind: "startsWith"; value: string; message?: string; }
| { kind: "endsWith"; value: string; message?: string; }
| { kind: "regex"; regex: RegExp; message?: string; }
| { kind: "trim"; message?: string; }
| { kind: "datetime"; offset: boolean; precision: number | null; message?: string; }