From dd3a7fe393c626e926e0e4f984208e7ce63169e4 Mon Sep 17 00:00:00 2001 From: Mihajlo Medjedovic Date: Thu, 6 Apr 2023 12:45:22 +0200 Subject: [PATCH] fix: ErrorBody interface made public --- src/types/errors/ErrorResponse.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/types/errors/ErrorResponse.ts b/src/types/errors/ErrorResponse.ts index 0057f3a..5dcfd5d 100644 --- a/src/types/errors/ErrorResponse.ts +++ b/src/types/errors/ErrorResponse.ts @@ -21,8 +21,8 @@ export class ErrorResponse { } } -interface ErrorBody { +export interface ErrorBody { message: string - details: string + details: any raw: any }