12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- 'use strict';
- const SchemaTypeOptions = require('./SchemaTypeOptions');
- class SchemaMapOptions extends SchemaTypeOptions {}
- const opts = require('./propertyOptions');
- Object.defineProperty(SchemaMapOptions.prototype, 'of', opts);
- module.exports = SchemaMapOptions;
|