blob: 069a05e0b7a9766ed8bb2e9782424b92e14aa108 (
plain) (
blame)
1
2
3
4
|
import { APIErrorResponse } from "./APIErrorResponse";
import { CaptchaRequiredResponse } from "./CaptchaRequiredResponse";
export type APIErrorOrCaptchaResponse = CaptchaRequiredResponse | APIErrorResponse;
|