UNPKG

mock-xmlhttprequest

Version:
20 lines (17 loc) 274 B
/** * mock-xmlhttprequest v8.4.1 * (c) 2025 Bertrand Guay-Paquet * @license MIT */ /** * XMLHttpRequest Event */ class XhrEvent { /** * @param type Event type */ constructor(type) { this.type = type; } } export { XhrEvent as default };