UNPKG

zod-subset-parser

Version:

Safely parse Zod schema definitions from strings without using eval.

9 lines (6 loc) 217 B
import { ZodTypeAny } from 'zod3'; declare class ZodParseError extends Error { constructor(message: string); } declare function parseZodString(str: string): ZodTypeAny; export { ZodParseError, parseZodString };