mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-03 06:39:30 +08:00
7 lines
249 B
Text
7 lines
249 B
Text
import type { ErrorObject } from "../types";
|
|
export default class ValidationError extends Error {
|
|
readonly errors: Partial<ErrorObject>[];
|
|
readonly ajv: true;
|
|
readonly validation: true;
|
|
constructor(errors: Partial<ErrorObject>[]);
|
|
}
|