UNPKG

ajv-errors

Version:

Custom error messages in JSON Schemas for Ajv validator

8 lines (7 loc) 218 B
import type { Plugin } from "ajv"; export interface ErrorMessageOptions { keepErrors?: boolean; singleError?: boolean | string; } declare const ajvErrors: Plugin<ErrorMessageOptions>; export default ajvErrors;