mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-03 03:19:31 +08:00
10 lines
249 B
Text
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;
|
|
};
|
|
}
|