UNPKG

yaml-ast-parser-custom-tags

Version:

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

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; }