Interface ZodIntersectionDef<T, U>

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

Type Parameters

Hierarchy (view full)

Properties

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

Generated using TypeDoc