Код: Выделить всё
import { ValidationError } from 'express-validator';
export class RequestValidationError extends Error {
constructor(private errors: ValidationError[]) {
super();
// Only because we are extending a built in class
Object.setPrototypeOf(this, RequestValidationError.prototype);
}
}
Подробнее здесь: https://stackoverflow.com/questions/795 ... ilt-in-cla
Мобильная версия