Files
bigwo/dev-assistant-mcp/node_modules/zod-to-json-schema/dist/esm/parsers/undefined.js

7 lines
136 B
JavaScript
Raw Normal View History

2026-03-12 12:47:56 +08:00
import { parseAnyDef } from "./any.js";
export function parseUndefinedDef(refs) {
return {
not: parseAnyDef(refs),
};
}