Membrane React - v0.6.0
    Preparing search index...

    Interface $ZodIntersectionDef<Left, Right>

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

    Type Parameters

    Hierarchy (View Summary)

    Index

    Properties

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