/// /// /// export default ResponseError; declare const ResponseError: ResponseErrorConstructor; declare interface ResponseErrorConstructor extends Yarla.Proto { new(init: ResponseErrorInit, status: number, message?: string): Yarla.xhr.ResponseError; } declare interface ResponseErrorInit { readonly url: string; readonly xhr: XMLHttpRequest; readonly headers: Yarla.AnyObject>; readonly responseType: Yarla.xhr.ResponseType; readonly response: any; readonly body: any; }