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

Type Parameters

Hierarchy-Diagram

UML class diagram of ZodIntersectionDef
Legend
icon for an interface in the UML class diagram interface
icon for a public property in the UML class diagram public property

Hierarchy (view full)

Properties

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