UNPKG

awesome-ajv-errors

Version:
11 lines (10 loc) 293 B
import { ValidationError } from "./types.js"; export interface DataPathItem { key: string; type: 'string' | 'number'; } export interface DataPath { path: Array<DataPathItem>; simplePath: Array<string>; } export declare function parseDataPath(error: ValidationError): DataPath;