ChatBotKit Node SDK
    Preparing search index...

    Type Alias ZodSchemaFor<T>

    ZodSchemaFor: {
        [K in keyof T]-?: undefined extends T[K]
            ? z.ZodOptional<z.ZodType<Exclude<T[K], undefined>>>
            : z.ZodType<T[K]>
    }

    Type Parameters

    • T