1
0
mirror of https://github.com/flarum/core.git synced 2025-10-12 15:34:26 +02:00
Files
php-flarum/js/dist-typings/common/utils/RequestError.d.ts
flarum-bot 45927f1068 Bundled output for commit 7db2d0f697
Includes transpiled JS/TS, and Typescript declaration files (typings).

[skip ci]
2021-10-30 22:31:34 +00:00

10 lines
333 B
TypeScript

export default class RequestError {
status: number;
options: Record<string, unknown>;
xhr: XMLHttpRequest;
responseText: string | null;
response: Record<string, unknown> | null;
alert: any;
constructor(status: number, responseText: string | null, options: Record<string, unknown>, xhr: XMLHttpRequest);
}