summary refs log tree commit diff
path: root/src/util/schemas/responses/APIErrorOrCaptchaResponse.ts
blob: c9a0e5be4bc9cdef3ca99559f6bbbe1543cc6e8b (plain) (blame)
1
2
3
4
5
6
import { APIErrorResponse } from "./APIErrorResponse";
import { CaptchaRequiredResponse } from "./CaptchaRequiredResponse";

export type APIErrorOrCaptchaResponse =
	| CaptchaRequiredResponse
	| APIErrorResponse;