happy-dom
Version:
Happy DOM is a JavaScript implementation of a web browser without its graphical user interface. It includes many web standards from WHATWG DOM and HTML.
14 lines • 404 B
JavaScript
import EventTarget from '../event/EventTarget.js';
/**
* References: https://xhr.spec.whatwg.org/#xmlhttprequesteventtarget.
*/
export default class XMLHttpRequestEventTarget extends EventTarget {
onloadstart = null;
onprogress = null;
onabort = null;
onerror = null;
onload = null;
ontimeout = null;
onloadend = null;
}
//# sourceMappingURL=XMLHttpRequestEventTarget.js.map