mirror of
https://github.com/flarum/core.git
synced 2025-07-24 18:21:33 +02:00
10 lines
282 B
TypeScript
10 lines
282 B
TypeScript
export default class RequestError {
|
|
status: string;
|
|
options: object;
|
|
xhr: XMLHttpRequest;
|
|
responseText: string | null;
|
|
response: object | null;
|
|
alert: any;
|
|
constructor(status: string, responseText: string | null, options: object, xhr: XMLHttpRequest);
|
|
}
|