agsamantha/node_modules/zod-to-json-schema/dist/esm/parsers/catch.js

5 lines
139 B
JavaScript
Raw Permalink Normal View History

2024-10-02 20:15:21 +00:00
import { parseDef } from "../parseDef.js";
export const parseCatchDef = (def, refs) => {
return parseDef(def.innerType._def, refs);
};