import { HttpError, HttpExceptions } from "@kopf02/express-utils"; import { Request } from "express"; export interface HttpExceptionUnauthorizedInterface { req: Request; msg?: { title?: string; description?: string; }; requiredPermission?: any; } declare class Unauthorized extends HttpExceptions.HttpException { private obj; constructor(obj: HttpExceptionUnauthorizedInterface); getBody(): HttpError<{ path: string; requiredPermission?: any; }>; } export default Unauthorized;