UNPKG

json-schema-library

Version:

Customizable and hackable json-validator and json-schema utilities for traversal, data generation and validation

14 lines (13 loc) 342 B
/** * Mapping, used in type validation to iterate over type-specific keywords to validate * - overview https://epoberezkin.github.io/ajv/keywords.html */ declare const _default: { array: string[]; boolean: string[]; object: string[]; string: string[]; number: string[]; null: string[]; }; export default _default;