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

11 lines
204 B
JavaScript
Raw Normal View History

2024-10-02 15:15:21 -05:00
export function parseNullDef(refs) {
return refs.target === "openApi3"
? {
enum: ["null"],
nullable: true,
}
: {
type: "null",
};
}