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

    Type Alias recursiveZodFormattedError<T>

    recursiveZodFormattedError: T extends [any, ...any[]]
        ? { [K in keyof T]?: ZodFormattedError<T[K]> }
        : T extends any[]
            ? { [k: number]: ZodFormattedError<T<T>[number], string> }
            : T extends object
                ? { [K in keyof T]?: ZodFormattedError<T[K]> }
                : unknown

    Type Parameters

    • T