Skip to main content
Module

x/zod/mod.ts>z.ZodTuple

TypeScript-first schema validation with static type inference
Very Popular
Go to Latest
import { z } from "https://deno.land/x/zod@v3.21.4/mod.ts";
const { ZodTuple } = z;

Type Parameters

optional
T extends [ZodTypeAny, ...ZodTypeAny[]] | [] = [ZodTypeAny, ...ZodTypeAny[]]
optional
Rest extends ZodTypeAny | null = null

Properties

readonly
items

Methods

_parse(input: ParseInput): ParseReturnType<this["_output"]>
rest<Rest extends ZodTypeAny>(rest: Rest): ZodTuple<T, Rest>

Static Properties

create: <T extends [ZodTypeAny, ...ZodTypeAny[]] | []>(schemas: T, params?: RawCreateParams) => ZodTuple<T, null>