import { Props } from "../../types"; interface AjaxResponse { xhr: XMLHttpRequest; data?: D; error?: Error; status: number; statusText: string; headers: Props; responseType?: string; allowedMethods?: string; allowedOrigin?: string; responseURL?: string; } export default AjaxResponse;