null.mjs 237 B

1234567891011
  1. export function parseNullDef(refs) {
  2. return refs.target === 'openApi3' ?
  3. {
  4. enum: ['null'],
  5. nullable: true,
  6. }
  7. : {
  8. type: 'null',
  9. };
  10. }
  11. //# sourceMappingURL=null.mjs.map