Variable coerceConst

coerce: {
    bigint: (
        params?: {
            description?: string;
            errorMap?: Zod.z.ZodErrorMap;
            invalid_type_error?: string;
            required_error?: string;
        } & { coerce?: boolean },
    ) => Zod.z.ZodBigInt;
    boolean: (
        params?: {
            description?: string;
            errorMap?: Zod.z.ZodErrorMap;
            invalid_type_error?: string;
            required_error?: string;
        } & { coerce?: boolean },
    ) => Zod.z.ZodBoolean;
    date: (
        params?: {
            description?: string;
            errorMap?: Zod.z.ZodErrorMap;
            invalid_type_error?: string;
            required_error?: string;
        } & { coerce?: boolean },
    ) => Zod.z.ZodDate;
    number: (
        params?: {
            description?: string;
            errorMap?: Zod.z.ZodErrorMap;
            invalid_type_error?: string;
            required_error?: string;
        } & { coerce?: boolean },
    ) => Zod.z.ZodNumber;
    string: (
        params?: {
            description?: string;
            errorMap?: Zod.z.ZodErrorMap;
            invalid_type_error?: string;
            required_error?: string;
        } & { coerce?: true },
    ) => Zod.z.ZodString;
}