summary refs log tree commit diff
path: root/src/util/schemas/responses/APIErrorOrCaptchaResponse.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/util/schemas/responses/APIErrorOrCaptchaResponse.ts')
-rw-r--r--src/util/schemas/responses/APIErrorOrCaptchaResponse.ts4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/util/schemas/responses/APIErrorOrCaptchaResponse.ts b/src/util/schemas/responses/APIErrorOrCaptchaResponse.ts
index c9a0e5be..069a05e0 100644
--- a/src/util/schemas/responses/APIErrorOrCaptchaResponse.ts
+++ b/src/util/schemas/responses/APIErrorOrCaptchaResponse.ts
@@ -1,6 +1,4 @@
 import { APIErrorResponse } from "./APIErrorResponse";
 import { CaptchaRequiredResponse } from "./CaptchaRequiredResponse";
 
-export type APIErrorOrCaptchaResponse =
-	| CaptchaRequiredResponse
-	| APIErrorResponse;
+export type APIErrorOrCaptchaResponse = CaptchaRequiredResponse | APIErrorResponse;