UNPKG

v8n

Version:

Dead simple fluent JavaScript validation library

9 lines (7 loc) 165 B
import { Rule } from './rule'; export interface ValidationError extends Error { rule: Rule; value: any; cause: ValidationError[] | null; target?: string; }