UNPKG

yaml-ast-parser-custom-tags

Version:

This is a custom maintained fork specifically for the YAML Language server.

22 lines (12 loc) 311 B
// Standard YAML's Failsafe schema. // http://www.yaml.org/spec/1.2/spec.html#id2802346 'use strict'; declare function require(n:string):any import {Schema} from '../schema'; export = new Schema({ explicit: [ require('../type/str'), require('../type/seq'), require('../type/map') ] });