UNPKG

zod-subset-parser

Version:

Safely parse Zod schema definitions from strings without using eval.

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