mirror of
https://github.com/flarum/core.git
synced 2025-10-12 15:34:26 +02:00
10 lines
333 B
TypeScript
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);
|
|
}
|