summary refs log tree commit diff
path: root/src/schemas/responses/APIErrorResponse.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/schemas/responses/APIErrorResponse.ts')
-rw-r--r--src/schemas/responses/APIErrorResponse.ts20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/schemas/responses/APIErrorResponse.ts b/src/schemas/responses/APIErrorResponse.ts

index 547ee58d..6297d5bd 100644 --- a/src/schemas/responses/APIErrorResponse.ts +++ b/src/schemas/responses/APIErrorResponse.ts
@@ -17,14 +17,14 @@ */ export interface APIErrorResponse { - code: number; - message: string; - errors: { - [key: string]: { - _errors: { - message: string; - code: string; - }[]; - }; - }; + code: number; + message: string; + errors: { + [key: string]: { + _errors: { + message: string; + code: string; + }[]; + }; + }; }