租房小程序前端代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
278 B

3 months ago
  1. // Standard YAML's Failsafe schema.
  2. // http://www.yaml.org/spec/1.2/spec.html#id2802346
  3. 'use strict';
  4. var Schema = require('../schema');
  5. module.exports = new Schema({
  6. explicit: [
  7. require('../type/str'),
  8. require('../type/seq'),
  9. require('../type/map')
  10. ]
  11. });