export const defAString = z.preprocess(
(val) => "this is def a string",
z.string(),
);
// const defAString: z.ZodEffects<z.ZodString, string, unknown>
export const defAString = z.preprocess(
(val) => "this is def a string",
z.string(),
);
// const defAString: z.ZodEffects<z.ZodString, string, unknown>