bupkis
    Preparing search index...

    Interface $ZodIntersectionDef<Left, Right>

    interface $ZodIntersectionDef<
        Left extends SomeType = z.core.$ZodType,
        Right extends SomeType = z.core.$ZodType,
    > {
        type: "intersection";
        left: Left;
        right: Right;
        error?: $ZodErrorMap<never>;
        checks?: z.core.$ZodCheck<never>[];
    }

    Type Parameters

    Hierarchy (View Summary)

    Index

    Properties

    type: "intersection"
    left: Left
    right: Right
    error?: $ZodErrorMap<never>
    checks?: z.core.$ZodCheck<never>[]