Integration App SDK - v1.14.0
    Preparing search index...

    Interface ZodArrayDef<T>

    interface ZodArrayDef<T extends ZodTypeAny = ZodTypeAny> {
        errorMap?: ZodErrorMap;
        description?: string;
        type: T;
        typeName: ZodArray;
        exactLength: null | { value: number; message?: string };
        minLength: null | { value: number; message?: string };
        maxLength: null | { value: number; message?: string };
    }

    Type Parameters

    Hierarchy (View Summary)

    Index

    Properties

    errorMap?: ZodErrorMap
    description?: string
    type: T
    typeName: ZodArray
    exactLength: null | { value: number; message?: string }
    minLength: null | { value: number; message?: string }
    maxLength: null | { value: number; message?: string }