Skip to main content
Module

x/zod/types.ts>ZodArray

TypeScript-first schema validation with static type inference
Extremely Popular
Go to Latest
class ZodArray
extends ZodType<arrayOutputType<T, Cardinality>, ZodArrayDef<T>, Cardinality extends "atleastone" ? [T["_input"], ...T["_input"][]] : T["_input"][]>
import { ZodArray } from "https://deno.land/x/zod@v3.17.3/types.ts";

Type Parameters

T extends ZodTypeAny
optional
Cardinality extends ArrayCardinality = "many"

Properties

readonly
element

Methods

_parse(input: ParseInput): ParseReturnType<this["_output"]>
length(len: number, message?: errorUtil.ErrMessage): this
max(maxLength: number, message?: errorUtil.ErrMessage): this
min(minLength: number, message?: errorUtil.ErrMessage): this
nonempty(message?: errorUtil.ErrMessage): ZodArray<T, "atleastone">

Static Properties

create: <T extends ZodTypeAny>(schema: T, params?: RawCreateParams) => ZodArray<T>