yaml-language-server-parser
Version:
This is a maintained fork of YAML-AST-PARSER specifically for the YAML Language server.
18 lines (17 loc) • 443 B
TypeScript
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: (...args: any[]) => Schema;
}