Urara-Blog/node_modules/.pnpm-store/v3/files/fd/319f39c1ff21f58de0f19c89051b17d34abd868ab0a5ef307f0a76bf0fd66265bad60ce66fc4102b882bd437b3d4ca85e7ea70659ecae0de9d3fda059d5eb9
2022-08-14 01:14:53 +08:00

11 lines
232 B
Text

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