Eslint fixes

This commit is contained in:
2025-12-05 15:09:15 +00:00
parent 56965562ff
commit 4919c03660
3 changed files with 10 additions and 20 deletions

View File

@@ -20,8 +20,7 @@ export interface TransportExceptionInterface {
name: string;
}
export interface ValidationExceptionInterface
extends TransportExceptionInterface {
export interface ValidationExceptionInterface extends TransportExceptionInterface {
name: "ValidationException";
error: object;
violations: string[];
@@ -41,8 +40,7 @@ export interface AccessExceptionInterface extends TransportExceptionInterface {
violations: string[];
}
export interface NotFoundExceptionInterface
extends TransportExceptionInterface {
export interface NotFoundExceptionInterface extends TransportExceptionInterface {
name: "NotFoundException";
}
@@ -53,8 +51,7 @@ export interface ServerExceptionInterface extends TransportExceptionInterface {
body: string;
}
export interface ConflictHttpExceptionInterface
extends TransportExceptionInterface {
export interface ConflictHttpExceptionInterface extends TransportExceptionInterface {
name: "ConflictHttpException";
violations: string[];
}