import { ZodSchema, ZodTypeDef } from 'zod' export const getParserFromSchema = (schema: ZodSchema) => (input: Input) => schema.safeParse(input) export const getParserPFromSchema = (schema: ZodSchema) => (input: Input) => schema.safeParseAsync(input)