UNPKG

yaml-ast-parser

Version:

[![Build Status](https://travis-ci.org/mulesoft-labs/yaml-ast-parser.svg?branch=master)](https://travis-ci.org/mulesoft-labs/yaml-ast-parser)

18 lines (17 loc) 429 B
import { Type } from './type'; export interface SchemaDefinition { include?: Schema[]; implicit?: Type[]; explicit?: Type[]; } export declare class Schema { include: Schema[]; implicit: Type[]; explicit: Type[]; compiledImplicit: any[]; compiledExplicit: any[]; compiledTypeMap: any[]; constructor(definition: SchemaDefinition); static DEFAULT: any; static create: () => Schema; }