Urara-Blog/node_modules/.pnpm-store/v3/files/f1/dad45d8e30281dd1226ea56ad4fd15b25b1aaa46b5e51787ae209ceee8b5fe8762d41c02bfe9a09e21704f584ffda8704c12cd026fdf6206c39916c0831e01
2022-08-14 01:14:53 +08:00

10 lines
249 B
Text

import { DefinedError } from 'ajv';
export interface ValidationError {
message: string;
path: string;
suggestion?: string;
context: {
errorType: DefinedError['keyword'];
[additionalContext: string]: unknown;
};
}