Integration App SDK - v1.14.0
    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