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.
28 lines • 1.24 kB
TypeScript
import Event from '../../event/Event.js';
import HTMLElement from '../html-element/HTMLElement.js';
/**
* HTMLBodyElement
*
* @see https://developer.mozilla.org/en-US/docs/Web/API/HTMLBodyElement
*/
export default class HTMLBodyElement extends HTMLElement {
onafterprint: ((event: Event) => void) | null;
onbeforeprint: ((event: Event) => void) | null;
onbeforeunload: ((event: Event) => void) | null;
ongamepadconnected: ((event: Event) => void) | null;
ongamepaddisconnected: ((event: Event) => void) | null;
onhashchange: ((event: Event) => void) | null;
onlanguagechange: ((event: Event) => void) | null;
onmessage: ((event: Event) => void) | null;
onmessageerror: ((event: Event) => void) | null;
onoffline: ((event: Event) => void) | null;
ononline: ((event: Event) => void) | null;
onpagehide: ((event: Event) => void) | null;
onpageshow: ((event: Event) => void) | null;
onpopstate: ((event: Event) => void) | null;
onrejectionhandled: ((event: Event) => void) | null;
onstorage: ((event: Event) => void) | null;
onunhandledrejection: ((event: Event) => void) | null;
onunload: ((event: Event) => void) | null;
}
//# sourceMappingURL=HTMLBodyElement.d.ts.map