happy-dom-without-node
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.
21 lines • 567 B
JavaScript
import UIEvent from '../UIEvent.js';
/**
*
*/
export default class ErrorEvent extends UIEvent {
/**
* Constructor.
*
* @param type Event type.
* @param [eventInit] Event init.
*/
constructor(type, eventInit = null) {
super(type, eventInit);
this.message = eventInit?.message ?? '';
this.filename = eventInit?.filename ?? '';
this.lineno = eventInit?.lineno ?? 0;
this.colno = eventInit?.colno ?? 0;
this.error = eventInit?.error ?? null;
}
}
//# sourceMappingURL=ErrorEvent.js.map