Interface ZodSetDef<Value>

interface ZodSetDef<Value extends Zod.z.ZodTypeAny = Zod.z.ZodTypeAny> {
    description?: string;
    errorMap?: Zod.z.ZodErrorMap;
    maxSize: null | { message?: string; value: number };
    minSize: null | { message?: string; value: number };
    typeName: ZodSet;
    valueType: Value;
}

Type Parameters

Hierarchy (View Summary)

Properties

description?: string
errorMap?: Zod.z.ZodErrorMap
maxSize: null | { message?: string; value: number }
minSize: null | { message?: string; value: number }
typeName: ZodSet
valueType: Value