[6a3a178] | 1 | import type { AnySchemaObject } from "./types";
|
---|
| 2 | import AjvCore, { Options } from "./core";
|
---|
| 3 | declare class Ajv2019 extends AjvCore {
|
---|
| 4 | constructor(opts?: Options);
|
---|
| 5 | _addVocabularies(): void;
|
---|
| 6 | _addDefaultMetaSchema(): void;
|
---|
| 7 | defaultMeta(): string | AnySchemaObject | undefined;
|
---|
| 8 | }
|
---|
| 9 | export default Ajv2019;
|
---|
| 10 | export { Format, FormatDefinition, AsyncFormatDefinition, KeywordDefinition, KeywordErrorDefinition, CodeKeywordDefinition, MacroKeywordDefinition, FuncKeywordDefinition, Vocabulary, Schema, SchemaObject, AnySchemaObject, AsyncSchema, AnySchema, ValidateFunction, AsyncValidateFunction, ErrorObject, ErrorNoParams, } from "./types";
|
---|
| 11 | export { Plugin, Options, CodeOptions, InstanceOptions, Logger, ErrorsTextOptions } from "./core";
|
---|
| 12 | export { SchemaCxt, SchemaObjCxt } from "./compile";
|
---|
| 13 | export { KeywordCxt } from "./compile/validate";
|
---|
| 14 | export { DefinedError } from "./vocabularies/errors";
|
---|
| 15 | export { JSONType } from "./compile/rules";
|
---|
| 16 | export { JSONSchemaType } from "./types/json-schema";
|
---|
| 17 | export { _, str, stringify, nil, Name, Code, CodeGen, CodeGenOptions } from "./compile/codegen";
|
---|