Interface ZodIntersectionDef<T, U>

interface ZodIntersectionDef<
    T extends ZodTypeAny = ZodTypeAny,
    U extends ZodTypeAny = ZodTypeAny,
> {
    description?: string;
    errorMap?: ZodErrorMap;
    left: T;
    right: U;
    typeName: ZodIntersection;
}

Type Parameters

Hierarchy (View Summary)

Properties

description?: string
errorMap?: ZodErrorMap
left: T
right: U
typeName: ZodIntersection