Skip to main content
The Deno 2 Release Candidate is here
Learn more
Module

x/frugal/dep/zod.ts>ZodSet

A frugal web framework
Latest
class ZodSet
extends ZodType<Set<Value["_output"]>, ZodSetDef<Value>, Set<Value["_input"]>>
import { ZodSet } from "https://deno.land/x/frugal@0.9.6/dep/zod.ts";

Type Parameters

optional
Value extends ZodTypeAny = ZodTypeAny

Methods

_parse(input: ParseInput): ParseReturnType<this["_output"]>
max(maxSize: number, message?: errorUtil.ErrMessage): this
min(minSize: number, message?: errorUtil.ErrMessage): this
nonempty(message?: errorUtil.ErrMessage): ZodSet<Value>
size(size: number, message?: errorUtil.ErrMessage): this

Static Properties

create: <Value extends ZodTypeAny = ZodTypeAny>(valueType: Value, params?: RawCreateParams) => ZodSet<Value>